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: 2025-12-30 15:57- 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\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option in qs does not enforce limits for bracket notation (\u003ccode\u003ea[]=1\u0026amp;a[]=2\u003c/code\u003e), allowing attackers to cause denial-of-service via memory exhaustion. Applications using \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;for DoS protection are vulnerable.\u003c/p\u003e\u003ch3\u003eDetails\u003c/h3\u003e\u003cp\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option only checks limits for indexed notation (\u003ccode\u003ea[0]=1\u0026amp;a[1]=2\u003c/code\u003e) but completely bypasses 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\u003ch3\u003ePoC\u003c/h3\u003e\u003cp\u003e\u003cstrong\u003eTest 1 - Basic bypass:\u003c/strong\u003e\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003enpm install qs\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\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\u003eTest 2 - DoS demonstration:\u003c/strong\u003e\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003econst qs = require(\u0027qs\u0027);\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026amp;a[]=\u0027);\nconst result = qs.parse(attack, { arrayLimit: 100 });\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003e\u003cstrong\u003eConfiguration:\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003ccode\u003earrayLimit: 5\u003c/code\u003e\u0026nbsp;(test 1) or \u003ccode\u003earrayLimit: 100\u003c/code\u003e\u0026nbsp;(test 2)\u003c/li\u003e\u003cli\u003eUse bracket notation: \u003ccode\u003ea[]=value\u003c/code\u003e\u0026nbsp;(not indexed \u003ccode\u003ea[0]=value\u003c/code\u003e)\u003c/li\u003e\u003c/ul\u003e\u003ch3\u003eImpact\u003c/h3\u003e\u003cp\u003eDenial of Service via memory exhaustion. Affects applications using \u003ccode\u003eqs.parse()\u003c/code\u003e\u0026nbsp;with user-controlled input and \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;for protection.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eAttack scenario:\u003c/strong\u003e\u003c/p\u003e\u003col\u003e\u003cli\u003eAttacker sends HTTP request: \u003ccode\u003eGET /api/search?filters[]=x\u0026amp;filters[]=x\u0026amp;...\u0026amp;filters[]=x\u003c/code\u003e\u0026nbsp;(100,000+ times)\u003c/li\u003e\u003cli\u003eApplication parses with \u003ccode\u003eqs.parse(query, { arrayLimit: 100 })\u003c/code\u003e\u003c/li\u003e\u003cli\u003eqs ignores limit, parses all 100,000 elements into array\u003c/li\u003e\u003cli\u003eServer memory exhausted \u2192 application crashes or becomes unresponsive\u003c/li\u003e\u003cli\u003eService unavailable for all users\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e\u003cstrong\u003eReal-world impact:\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eSingle malicious request can crash server\u003c/li\u003e\u003cli\u003eNo authentication required\u003c/li\u003e\u003cli\u003eEasy to automate and scale\u003c/li\u003e\u003cli\u003eAffects any endpoint parsing query strings with bracket notation\u003c/li\u003e\u003c/ul\u003e"
}
],
"value": "Improper Input Validation vulnerability in qs (parse modules) allows HTTP DoS.This issue affects qs: \u003c 6.14.1.\n\n\nSummaryThe arrayLimit\u00a0option in qs does not enforce limits for bracket notation (a[]=1\u0026a[]=2), allowing attackers to cause denial-of-service via memory exhaustion. Applications using arrayLimit\u00a0for DoS protection are vulnerable.\n\nDetailsThe arrayLimit\u00a0option only checks limits for indexed notation (a[0]=1\u0026a[1]=2) but completely bypasses 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\nPoCTest 1 - Basic bypass:\n\nnpm install qs\n\n\n\n\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\nTest 2 - DoS demonstration:\n\nconst qs = require(\u0027qs\u0027);\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026a[]=\u0027);\nconst result = qs.parse(attack, { arrayLimit: 100 });\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\n\n\n\n\n\nConfiguration:\n\n * arrayLimit: 5\u00a0(test 1) or arrayLimit: 100\u00a0(test 2)\n * Use bracket notation: a[]=value\u00a0(not indexed a[0]=value)\n\n\nImpactDenial of Service via memory exhaustion. Affects applications using qs.parse()\u00a0with user-controlled input and arrayLimit\u00a0for protection.\n\nAttack scenario:\n\n * Attacker sends HTTP request: GET /api/search?filters[]=x\u0026filters[]=x\u0026...\u0026filters[]=x\u00a0(100,000+ times)\n * Application parses with qs.parse(query, { arrayLimit: 100 })\n * qs ignores limit, parses all 100,000 elements into array\n * Server memory exhausted \u2192 application crashes or becomes unresponsive\n * Service unavailable for all users\nReal-world impact:\n\n * Single malicious request can crash server\n * No authentication required\n * Easy to automate and scale\n * Affects any endpoint parsing query strings with bracket notation"
}
],
"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": "NONE",
"attackVector": "NETWORK",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"exploitMaturity": "NOT_DEFINED",
"privilegesRequired": "NONE",
"providerUrgency": "NOT_DEFINED",
"subAvailabilityImpact": "NONE",
"subConfidentialityImpact": "NONE",
"subIntegrityImpact": "NONE",
"userInteraction": "NONE",
"valueDensity": "NOT_DEFINED",
"vectorString": "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",
"version": "4.0",
"vulnAvailabilityImpact": "HIGH",
"vulnConfidentialityImpact": "NONE",
"vulnIntegrityImpact": "NONE",
"vulnerabilityResponseEffort": "NOT_DEFINED"
},
"format": "CVSS",
"scenarios": [
{
"lang": "en",
"value": "GENERAL"
}
]
},
{
"cvssV3_1": {
"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"
},
"format": "CVSS",
"scenarios": [
{
"lang": "en",
"value": "GENERAL"
}
]
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-20",
"description": "CWE-20 Improper Input Validation",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2025-12-29T22:56:45.240Z",
"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": "2025-12-30T15:57:41.402Z",
"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\":\"2025-12-31T20:43:25.830\",\"vulnStatus\":\"Awaiting 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\\nSummaryThe arrayLimit\u00a0option in qs does not enforce limits for bracket notation (a[]=1\u0026a[]=2), allowing attackers to cause denial-of-service via memory exhaustion. Applications using arrayLimit\u00a0for DoS protection are vulnerable.\\n\\nDetailsThe arrayLimit\u00a0option only checks limits for indexed notation (a[0]=1\u0026a[1]=2) but completely bypasses 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\\nPoCTest 1 - Basic bypass:\\n\\nnpm install qs\\n\\n\\n\\n\\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\\nTest 2 - DoS demonstration:\\n\\nconst qs = require(\u0027qs\u0027);\\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026a[]=\u0027);\\nconst result = qs.parse(attack, { arrayLimit: 100 });\\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\\n\\n\\n\\n\\n\\nConfiguration:\\n\\n * arrayLimit: 5\u00a0(test 1) or arrayLimit: 100\u00a0(test 2)\\n * Use bracket notation: a[]=value\u00a0(not indexed a[0]=value)\\n\\n\\nImpactDenial of Service via memory exhaustion. Affects applications using qs.parse()\u00a0with user-controlled input and arrayLimit\u00a0for protection.\\n\\nAttack scenario:\\n\\n * Attacker sends HTTP request: GET /api/search?filters[]=x\u0026filters[]=x\u0026...\u0026filters[]=x\u00a0(100,000+ times)\\n * Application parses with qs.parse(query, { arrayLimit: 100 })\\n * qs ignores limit, parses all 100,000 elements into array\\n * Server memory exhausted \u2192 application crashes or becomes unresponsive\\n * Service unavailable for all users\\nReal-world impact:\\n\\n * Single malicious request can crash server\\n * No authentication required\\n * Easy to automate and scale\\n * Affects any endpoint parsing query strings with bracket notation\"}],\"metrics\":{\"cvssMetricV40\":[{\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"4.0\",\"vectorString\":\"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\",\"baseScore\":8.7,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"attackRequirements\":\"NONE\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"vulnConfidentialityImpact\":\"NONE\",\"vulnIntegrityImpact\":\"NONE\",\"vulnAvailabilityImpact\":\"HIGH\",\"subConfidentialityImpact\":\"NONE\",\"subIntegrityImpact\":\"NONE\",\"subAvailabilityImpact\":\"NONE\",\"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:L/PR:N/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":7.5,\"baseSeverity\":\"HIGH\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":3.6}]},\"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\": 8.7, \"Automatable\": \"NOT_DEFINED\", \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"valueDensity\": \"NOT_DEFINED\", \"vectorString\": \"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\", \"exploitMaturity\": \"NOT_DEFINED\", \"providerUrgency\": \"NOT_DEFINED\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"attackRequirements\": \"NONE\", \"privilegesRequired\": \"NONE\", \"subIntegrityImpact\": \"NONE\", \"vulnIntegrityImpact\": \"NONE\", \"subAvailabilityImpact\": \"NONE\", \"vulnAvailabilityImpact\": \"HIGH\", \"subConfidentialityImpact\": \"NONE\", \"vulnConfidentialityImpact\": \"NONE\", \"vulnerabilityResponseEffort\": \"NOT_DEFINED\"}, \"scenarios\": [{\"lang\": \"en\", \"value\": \"GENERAL\"}]}, {\"format\": \"CVSS\", \"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 7.5, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"HIGH\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"HIGH\", \"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\\nSummaryThe arrayLimit\\u00a0option in qs does not enforce limits for bracket notation (a[]=1\u0026a[]=2), allowing attackers to cause denial-of-service via memory exhaustion. Applications using arrayLimit\\u00a0for DoS protection are vulnerable.\\n\\nDetailsThe arrayLimit\\u00a0option only checks limits for indexed notation (a[0]=1\u0026a[1]=2) but completely bypasses 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\\nPoCTest 1 - Basic bypass:\\n\\nnpm install qs\\n\\n\\n\\n\\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\\nTest 2 - DoS demonstration:\\n\\nconst qs = require(\u0027qs\u0027);\\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026a[]=\u0027);\\nconst result = qs.parse(attack, { arrayLimit: 100 });\\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\\n\\n\\n\\n\\n\\nConfiguration:\\n\\n * arrayLimit: 5\\u00a0(test 1) or arrayLimit: 100\\u00a0(test 2)\\n * Use bracket notation: a[]=value\\u00a0(not indexed a[0]=value)\\n\\n\\nImpactDenial of Service via memory exhaustion. Affects applications using qs.parse()\\u00a0with user-controlled input and arrayLimit\\u00a0for protection.\\n\\nAttack scenario:\\n\\n * Attacker sends HTTP request: GET /api/search?filters[]=x\u0026filters[]=x\u0026...\u0026filters[]=x\\u00a0(100,000+ times)\\n * Application parses with qs.parse(query, { arrayLimit: 100 })\\n * qs ignores limit, parses all 100,000 elements into array\\n * Server memory exhausted \\u2192 application crashes or becomes unresponsive\\n * Service unavailable for all users\\nReal-world impact:\\n\\n * Single malicious request can crash server\\n * No authentication required\\n * Easy to automate and scale\\n * Affects any endpoint parsing query strings with bracket notation\", \"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\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option in qs does not enforce limits for bracket notation (\u003ccode\u003ea[]=1\u0026amp;a[]=2\u003c/code\u003e), allowing attackers to cause denial-of-service via memory exhaustion. Applications using \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;for DoS protection are vulnerable.\u003c/p\u003e\u003ch3\u003eDetails\u003c/h3\u003e\u003cp\u003eThe \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;option only checks limits for indexed notation (\u003ccode\u003ea[0]=1\u0026amp;a[1]=2\u003c/code\u003e) but completely bypasses 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\u003ch3\u003ePoC\u003c/h3\u003e\u003cp\u003e\u003cstrong\u003eTest 1 - Basic bypass:\u003c/strong\u003e\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003enpm install qs\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\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\u003eTest 2 - DoS demonstration:\u003c/strong\u003e\u003c/p\u003e\u003cdiv\u003e\u003cpre\u003econst qs = require(\u0027qs\u0027);\\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026amp;a[]=\u0027);\\nconst result = qs.parse(attack, { arrayLimit: 100 });\\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\u003c/pre\u003e\u003cdiv\u003e\u003c/div\u003e\u003c/div\u003e\u003cp\u003e\u003cstrong\u003eConfiguration:\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003ccode\u003earrayLimit: 5\u003c/code\u003e\u0026nbsp;(test 1) or \u003ccode\u003earrayLimit: 100\u003c/code\u003e\u0026nbsp;(test 2)\u003c/li\u003e\u003cli\u003eUse bracket notation: \u003ccode\u003ea[]=value\u003c/code\u003e\u0026nbsp;(not indexed \u003ccode\u003ea[0]=value\u003c/code\u003e)\u003c/li\u003e\u003c/ul\u003e\u003ch3\u003eImpact\u003c/h3\u003e\u003cp\u003eDenial of Service via memory exhaustion. Affects applications using \u003ccode\u003eqs.parse()\u003c/code\u003e\u0026nbsp;with user-controlled input and \u003ccode\u003earrayLimit\u003c/code\u003e\u0026nbsp;for protection.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eAttack scenario:\u003c/strong\u003e\u003c/p\u003e\u003col\u003e\u003cli\u003eAttacker sends HTTP request: \u003ccode\u003eGET /api/search?filters[]=x\u0026amp;filters[]=x\u0026amp;...\u0026amp;filters[]=x\u003c/code\u003e\u0026nbsp;(100,000+ times)\u003c/li\u003e\u003cli\u003eApplication parses with \u003ccode\u003eqs.parse(query, { arrayLimit: 100 })\u003c/code\u003e\u003c/li\u003e\u003cli\u003eqs ignores limit, parses all 100,000 elements into array\u003c/li\u003e\u003cli\u003eServer memory exhausted \\u2192 application crashes or becomes unresponsive\u003c/li\u003e\u003cli\u003eService unavailable for all users\u003c/li\u003e\u003c/ol\u003e\u003cp\u003e\u003cstrong\u003eReal-world impact:\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eSingle malicious request can crash server\u003c/li\u003e\u003cli\u003eNo authentication required\u003c/li\u003e\u003cli\u003eEasy to automate and scale\u003c/li\u003e\u003cli\u003eAffects any endpoint parsing query strings with bracket notation\u003c/li\u003e\u003c/ul\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\": \"2025-12-29T22:56:45.240Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2025-15284\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-12-30T15:57:41.402Z\", \"dateReserved\": \"2025-12-29T21:36:51.399Z\", \"assignerOrgId\": \"7ffcee3d-2c14-4c3e-b844-86c6a321a158\", \"datePublished\": \"2025-12-29T22:56:45.240Z\", \"assignerShortName\": \"harborist\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:0261
Vulnerability from csaf_redhat - Published: 2026-01-07 18:34 - Updated: 2026-01-27 18:16Notes
{
"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-01-27T18:16:02+00:00",
"generator": {
"date": "2026-01-27T18:16:02+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.16"
}
},
"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-01-27T18:16:02+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:0761
Vulnerability from csaf_redhat - Published: 2026-01-19 03:34 - Updated: 2026-01-27 10:37Notes
{
"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-01-27T10:37:40+00:00",
"generator": {
"date": "2026-01-27T10:37:40+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.16"
}
},
"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-01-27T10:37:40+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Cryostat 4 on RHEL 9",
"product": {
"name": "Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:cryostat:4::el9"
}
}
}
],
"category": "product_family",
"name": "Cryostat"
},
{
"branches": [
{
"category": "product_version",
"name": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"product": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"product_id": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-agent-init-rhel9\u0026tag=0.6.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"product": {
"name": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"product_id": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-db-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"product": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"product_id": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-grafana-dashboard-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"product": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"product_id": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-openshift-console-plugin-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"product": {
"name": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"product_id": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-reports-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"product": {
"name": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"product_id": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"product": {
"name": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"product_id": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-operator-bundle\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"product": {
"name": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"product_id": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9-operator\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"product": {
"name": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"product_id": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/cryostat-storage-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"product": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"product_id": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"product_identification_helper": {
"purl": "pkg:oci/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960?arch=amd64\u0026repository_url=registry.redhat.io/cryostat/jfr-datasource-rhel9\u0026tag=4.1.0-16"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"product": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"product_id": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-agent-init-rhel9\u0026tag=0.6.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"product": {
"name": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"product_id": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-db-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"product": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"product_id": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-grafana-dashboard-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"product": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"product_id": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-openshift-console-plugin-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"product": {
"name": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"product_id": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-reports-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"product": {
"name": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"product_id": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"product": {
"name": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"product_id": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-operator-bundle\u0026tag=4.1.0-16"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"product": {
"name": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"product_id": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-rhel9-operator\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"product": {
"name": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"product_id": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/cryostat-storage-rhel9\u0026tag=4.1.0-21"
}
}
},
{
"category": "product_version",
"name": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"product": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"product_id": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"product_identification_helper": {
"purl": "pkg:oci/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948?arch=arm64\u0026repository_url=registry.redhat.io/cryostat/jfr-datasource-rhel9\u0026tag=4.1.0-16"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64"
},
"product_reference": "cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64"
},
"product_reference": "cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64"
},
"product_reference": "cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64"
},
"product_reference": "cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64"
},
"product_reference": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64"
},
"product_reference": "cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64"
},
"product_reference": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64"
},
"product_reference": "cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64"
},
"product_reference": "cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64"
},
"product_reference": "cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64"
},
"product_reference": "cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64"
},
"product_reference": "cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64"
},
"product_reference": "cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64"
},
"product_reference": "cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64"
},
"product_reference": "cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64"
},
"product_reference": "cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64"
},
"product_reference": "cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64"
},
"product_reference": "cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64"
},
"product_reference": "cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"relates_to_product_reference": "9Base-Cryostat-4"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64 as a component of Cryostat 4 on RHEL 9",
"product_id": "9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
},
"product_reference": "cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64",
"relates_to_product_reference": "9Base-Cryostat-4"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64"
],
"known_not_affected": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-19T03:34:11+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0761"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-66566",
"cwe": {
"id": "CWE-908",
"name": "Use of Uninitialized Resource"
},
"discovery_date": "2025-12-05T19:00:50.134024+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419500"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lz4-java. This vulnerability allows disclosure of sensitive data via crafted compressed input due to insufficient clearing of the output buffer in Java-based decompressor implementations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lz4-java: lz4-java: Information Disclosure via Insufficient Output Buffer Clearing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated IMPORTANT because it allows for information disclosure when Java-based decompressor implementations reuse output buffers without proper clearing, potentially exposing sensitive data via crafted compressed input. JNI-based implementations of lz4-java are not affected by this issue.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
],
"known_not_affected": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66566"
},
{
"category": "external",
"summary": "RHBZ#2419500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419500"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66566",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66566"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66566",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66566"
},
{
"category": "external",
"summary": "https://github.com/yawkat/lz4-java/commit/33d180cb70c4d93c80fb0dc3ab3002f457e93840",
"url": "https://github.com/yawkat/lz4-java/commit/33d180cb70c4d93c80fb0dc3ab3002f457e93840"
},
{
"category": "external",
"summary": "https://github.com/yawkat/lz4-java/security/advisories/GHSA-cmp6-m4wj-q63q",
"url": "https://github.com/yawkat/lz4-java/security/advisories/GHSA-cmp6-m4wj-q63q"
}
],
"release_date": "2025-12-05T18:10:16.470000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-01-19T03:34:11+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:0761"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:47f169436c4a6e40c8e829af7e753e481b5e672ca24b59971a2914807e968bc7_amd64",
"9Base-Cryostat-4:cryostat/cryostat-agent-init-rhel9@sha256:85f9a6db86ade5099c06d162d6affcd65f117f8449e3f18df628a89ba90e7eb1_arm64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:58a80ea179c75c8cfba9c1171930c647f8b1da4f6720925166ba88debb562f68_amd64",
"9Base-Cryostat-4:cryostat/cryostat-db-rhel9@sha256:5abe74e5e4e6c0272cb013786441d99f3c182f56e120f8db68bfa2288a2b0741_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:30742c883d8b607beace385e79829d3e954b222e973ebda2ebbe80d05b89df4a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-grafana-dashboard-rhel9@sha256:449cdba9e4b8d185a14530cb4877532a6e8dccbd9892862f03caffd3255e7d4d_amd64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:42ad2b45f4837a3a7145bb5465193c0fbd0f9a19cd084319ae3cec2c044d7749_arm64",
"9Base-Cryostat-4:cryostat/cryostat-openshift-console-plugin-rhel9@sha256:d5052b06326f477548bc4e5d0b941040dd8263e5f1d431dca86cc1d19cdfb227_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:3990bc1d5cdbba8a52bfd6e22811d056b122e3d0e423eb9fd6480ac02f56a8bc_amd64",
"9Base-Cryostat-4:cryostat/cryostat-operator-bundle@sha256:bde9b20b5563b1f76e64adfd16325158dd4d6a3d7f5cc6bb114c11e6bdf8d863_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:0dc529cfd1c5b62bab2b45a002029260ee1add496bf771ddf430d7f2388a3a3c_arm64",
"9Base-Cryostat-4:cryostat/cryostat-reports-rhel9@sha256:3ba64d19551ff3ebfe9fd9939e0fd338135addb278c29f32c6d3dbdfba72c682_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:1faf17c23b013dff6ef9967fb12c35df9cb44c816ad2422ddf028006c35ee003_arm64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9-operator@sha256:9e066a2c850468e029b0b0c78857a96d71f4ed005a1b29b903f47dcd74e308ce_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:89580204b1fb3c1df3fcccb6b22cf47f4b5a7f76cc779984274c72b24c9d0f37_amd64",
"9Base-Cryostat-4:cryostat/cryostat-rhel9@sha256:b15d84cdd4f637461f3776b3170f80f330da4fffede49aec08bae13031e3d89a_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:2309b2886630d23f88c169d53a0213547d1ad42d337c77332dcb279ee31c6c3f_arm64",
"9Base-Cryostat-4:cryostat/cryostat-storage-rhel9@sha256:e421d42889a7f26d7023c6d13cf24f299a76967fa3c89bf7a7aaa226fe5fd5fb_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3ba904612846ada1e6fc3d48e35c33642b93030a41dd148e7fac998ba59ab960_amd64",
"9Base-Cryostat-4:cryostat/jfr-datasource-rhel9@sha256:3e9168fa43bfd9af8c55c73b45359c06ad65cd22d10770ba5c75fe83d0c5f948_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lz4-java: lz4-java: Information Disclosure via Insufficient Output Buffer Clearing"
}
]
}
RHSA-2026:1000
Vulnerability from csaf_redhat - Published: 2026-01-27 14:30 - Updated: 2026-01-27 14:32Notes
{
"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-01-27T14:32:59+00:00",
"generator": {
"date": "2026-01-27T14:32:59+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.16"
}
},
"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-01-27T14:32:59+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:0531
Vulnerability from csaf_redhat - Published: 2026-01-13 21:28 - Updated: 2026-01-27 18:16Notes
{
"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-01-27T18:16:07+00:00",
"generator": {
"date": "2026-01-27T18:16:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.16"
}
},
"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-01-27T18:16:07+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Developer Hub 1.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:0414
Vulnerability from csaf_redhat - Published: 2026-01-08 22:34 - Updated: 2026-01-27 18:16Notes
{
"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-01-27T18:16:07+00:00",
"generator": {
"date": "2026-01-27T18:16:07+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.6.16"
}
},
"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-01-27T18:16:07+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"
}
]
}
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"
}
]
}
FKIE_CVE-2025-15284
Vulnerability from fkie_nvd - Published: 2025-12-29 23:15 - Updated: 2025-12-31 20:43| 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\nSummaryThe arrayLimit\u00a0option in qs does not enforce limits for bracket notation (a[]=1\u0026a[]=2), allowing attackers to cause denial-of-service via memory exhaustion. Applications using arrayLimit\u00a0for DoS protection are vulnerable.\n\nDetailsThe arrayLimit\u00a0option only checks limits for indexed notation (a[0]=1\u0026a[1]=2) but completely bypasses 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\nPoCTest 1 - Basic bypass:\n\nnpm install qs\n\n\n\n\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\nTest 2 - DoS demonstration:\n\nconst qs = require(\u0027qs\u0027);\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026a[]=\u0027);\nconst result = qs.parse(attack, { arrayLimit: 100 });\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\n\n\n\n\n\nConfiguration:\n\n * arrayLimit: 5\u00a0(test 1) or arrayLimit: 100\u00a0(test 2)\n * Use bracket notation: a[]=value\u00a0(not indexed a[0]=value)\n\n\nImpactDenial of Service via memory exhaustion. Affects applications using qs.parse()\u00a0with user-controlled input and arrayLimit\u00a0for protection.\n\nAttack scenario:\n\n * Attacker sends HTTP request: GET /api/search?filters[]=x\u0026filters[]=x\u0026...\u0026filters[]=x\u00a0(100,000+ times)\n * Application parses with qs.parse(query, { arrayLimit: 100 })\n * qs ignores limit, parses all 100,000 elements into array\n * Server memory exhausted \u2192 application crashes or becomes unresponsive\n * Service unavailable for all users\nReal-world impact:\n\n * Single malicious request can crash server\n * No authentication required\n * Easy to automate and scale\n * Affects any endpoint parsing query strings with bracket notation"
}
],
"id": "CVE-2025-15284",
"lastModified": "2025-12-31T20:43:25.830",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"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"
},
"exploitabilityScore": 3.9,
"impactScore": 3.6,
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"type": "Secondary"
}
],
"cvssMetricV40": [
{
"cvssData": {
"Automatable": "NOT_DEFINED",
"Recovery": "NOT_DEFINED",
"Safety": "NOT_DEFINED",
"attackComplexity": "LOW",
"attackRequirements": "NONE",
"attackVector": "NETWORK",
"availabilityRequirement": "NOT_DEFINED",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"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": "NONE",
"subConfidentialityImpact": "NONE",
"subIntegrityImpact": "NONE",
"userInteraction": "NONE",
"valueDensity": "NOT_DEFINED",
"vectorString": "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",
"version": "4.0",
"vulnAvailabilityImpact": "HIGH",
"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": "Awaiting Analysis",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "CWE-20"
}
],
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"type": "Secondary"
}
]
}
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"
}
]
}
GHSA-6RW7-VPXM-498P
Vulnerability from github – Published: 2025-12-30 21:02 – Updated: 2025-12-30 21:02Summary
The arrayLimit option in qs does not enforce limits for bracket notation (a[]=1&a[]=2), allowing attackers to cause denial-of-service via memory exhaustion. Applications using arrayLimit for DoS protection are vulnerable.
Details
The arrayLimit option only checks limits for indexed notation (a[0]=1&a[1]=2) but completely bypasses 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
Test 1 - Basic bypass:
npm install qs
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)
Test 2 - DoS demonstration:
const qs = require('qs');
const attack = 'a[]=' + Array(10000).fill('x').join('&a[]=');
const result = qs.parse(attack, { arrayLimit: 100 });
console.log(result.a.length); // Output: 10000 (should be max 100)
Configuration:
- arrayLimit: 5 (test 1) or arrayLimit: 100 (test 2)
- Use bracket notation: a[]=value (not indexed a[0]=value)
Impact
Denial of Service via memory exhaustion. Affects applications using qs.parse() with user-controlled input and arrayLimit for protection.
Attack scenario:
1. Attacker sends HTTP request: GET /api/search?filters[]=x&filters[]=x&...&filters[]=x (100,000+ times)
2. Application parses with qs.parse(query, { arrayLimit: 100 })
3. qs ignores limit, parses all 100,000 elements into array
4. Server memory exhausted → application crashes or becomes unresponsive
5. Service unavailable for all users
Real-world impact: - Single malicious request can crash server - No authentication required - Easy to automate and scale - Affects any endpoint parsing query strings with bracket notation
Suggested Fix
Add arrayLimit validation to the bracket notation handler. The code already calculates currentArrayLength at line 147-151, but it's not used in the bracket notation handler at line 159.
Current code (lib/parse.js:159-162):
if (root === '[]' && options.parseArrays) {
obj = options.allowEmptyArrays && (leaf === '' || (options.strictNullHandling && leaf === null))
? []
: utils.combine([], leaf); // No arrayLimit check
}
Fixed code:
if (root === '[]' && options.parseArrays) {
// Use currentArrayLength already calculated at line 147-151
if (options.throwOnLimitExceeded && currentArrayLength >= options.arrayLimit) {
throw new RangeError('Array limit exceeded. Only ' + options.arrayLimit + ' element' + (options.arrayLimit === 1 ? '' : 's') + ' allowed in an array.');
}
// If limit exceeded and not throwing, convert to object (consistent with indexed notation behavior)
if (currentArrayLength >= options.arrayLimit) {
obj = options.plainObjects ? { __proto__: null } : {};
obj[currentArrayLength] = leaf;
} else {
obj = options.allowEmptyArrays && (leaf === '' || (options.strictNullHandling && leaf === null))
? []
: utils.combine([], leaf);
}
}
This makes bracket notation behaviour consistent with indexed notation, enforcing arrayLimit and converting to object when limit is exceeded (per README documentation).
{
"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 does not enforce limits for bracket notation (`a[]=1\u0026a[]=2`), allowing attackers to cause denial-of-service via memory exhaustion. Applications using `arrayLimit` for DoS protection are vulnerable.\n\n### Details\n\nThe `arrayLimit` option only checks limits for indexed notation (`a[0]=1\u0026a[1]=2`) but completely bypasses 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**Test 1 - Basic bypass:**\n```bash\nnpm install qs\n```\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**Test 2 - DoS demonstration:**\n```javascript\nconst qs = require(\u0027qs\u0027);\nconst attack = \u0027a[]=\u0027 + Array(10000).fill(\u0027x\u0027).join(\u0027\u0026a[]=\u0027);\nconst result = qs.parse(attack, { arrayLimit: 100 });\nconsole.log(result.a.length); // Output: 10000 (should be max 100)\n```\n\n**Configuration:**\n- `arrayLimit: 5` (test 1) or `arrayLimit: 100` (test 2)\n- Use bracket notation: `a[]=value` (not indexed `a[0]=value`)\n\n### Impact\n\nDenial of Service via memory exhaustion. Affects applications using `qs.parse()` with user-controlled input and `arrayLimit` for protection.\n\n**Attack scenario:**\n1. Attacker sends HTTP request: `GET /api/search?filters[]=x\u0026filters[]=x\u0026...\u0026filters[]=x` (100,000+ times)\n2. Application parses with `qs.parse(query, { arrayLimit: 100 })`\n3. qs ignores limit, parses all 100,000 elements into array\n4. Server memory exhausted \u2192 application crashes or becomes unresponsive\n5. Service unavailable for all users\n\n**Real-world impact:**\n- Single malicious request can crash server\n- No authentication required\n- Easy to automate and scale\n- Affects any endpoint parsing query strings with bracket notation\n\n### Suggested Fix\n\nAdd `arrayLimit` validation to the bracket notation handler. The code already calculates `currentArrayLength` at line 147-151, but it\u0027s not used in the bracket notation handler at line 159.\n\n**Current code** (`lib/parse.js:159-162`):\n```javascript\nif (root === \u0027[]\u0027 \u0026\u0026 options.parseArrays) {\n obj = options.allowEmptyArrays \u0026\u0026 (leaf === \u0027\u0027 || (options.strictNullHandling \u0026\u0026 leaf === null))\n ? []\n : utils.combine([], leaf); // No arrayLimit check\n}\n```\n\n**Fixed code**:\n```javascript\nif (root === \u0027[]\u0027 \u0026\u0026 options.parseArrays) {\n // Use currentArrayLength already calculated at line 147-151\n if (options.throwOnLimitExceeded \u0026\u0026 currentArrayLength \u003e= options.arrayLimit) {\n throw new RangeError(\u0027Array limit exceeded. Only \u0027 + options.arrayLimit + \u0027 element\u0027 + (options.arrayLimit === 1 ? \u0027\u0027 : \u0027s\u0027) + \u0027 allowed in an array.\u0027);\n }\n \n // If limit exceeded and not throwing, convert to object (consistent with indexed notation behavior)\n if (currentArrayLength \u003e= options.arrayLimit) {\n obj = options.plainObjects ? { __proto__: null } : {};\n obj[currentArrayLength] = leaf;\n } else {\n obj = options.allowEmptyArrays \u0026\u0026 (leaf === \u0027\u0027 || (options.strictNullHandling \u0026\u0026 leaf === null))\n ? []\n : utils.combine([], leaf);\n }\n}\n```\n\nThis makes bracket notation behaviour consistent with indexed notation, enforcing `arrayLimit` and converting to object when limit is exceeded (per README documentation).",
"id": "GHSA-6rw7-vpxm-498p",
"modified": "2025-12-30T21:02:54Z",
"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"
}
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"
}
]
}
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.