From 816d302d7191594e8cde00e05f139033c0519934 Mon Sep 17 00:00:00 2001 From: Yoav Schwammenthal Date: Wed, 7 Jan 2026 13:46:57 +0200 Subject: [PATCH] MGMT-20673: Improve OpenShift AI bundle requirements tooltip - Add message that GPUs are recommended for optimal AI/ML workload performance - Add link to official Red Hat documentation for detailed requirements The tooltip now provides users with clear guidance when selecting the OpenShift AI bundle during cluster creation. --- .../components/clusterConfiguration/operators/bundleSpecs.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/ui-lib/lib/ocm/components/clusterConfiguration/operators/bundleSpecs.tsx b/libs/ui-lib/lib/ocm/components/clusterConfiguration/operators/bundleSpecs.tsx index 77d261ac96..7b43767999 100644 --- a/libs/ui-lib/lib/ocm/components/clusterConfiguration/operators/bundleSpecs.tsx +++ b/libs/ui-lib/lib/ocm/components/clusterConfiguration/operators/bundleSpecs.tsx @@ -1,5 +1,6 @@ import * as React from 'react'; import { List, ListItem } from '@patternfly/react-core'; +import { getYearForAssistedInstallerDocumentationLink } from '../../../../common/config/docs_links'; export type BundleSpec = { incompatibleBundles?: string[]; @@ -30,11 +31,13 @@ export const bundleSpecs: { [key: string]: BundleSpec } = { incompatibleBundles: [], Description: () => ( + GPUs are recommended for optimal AI/ML workload performance. NVIDIA GPU, AMD GPU and Kernel Module Management may or may not be installed based on the GPU discovered on your hosts. ), + docsLink: `https://docs.redhat.com/en/documentation/assisted_installer_for_openshift_container_platform/${getYearForAssistedInstallerDocumentationLink()}/html/installing_openshift_container_platform_with_the_assisted_installer/customizing-with-bundles-and-operators#openshift-ai-bundle_customizing-with-bundles-and-operators`, }, };