Skip to content

Commit 9878a25

Browse files
authored
MGMT-20673: Improve OpenShift AI bundle requirements tooltip (#3352)
- 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.
1 parent a0b51ec commit 9878a25

File tree

1 file changed

+3
-0
lines changed
  • libs/ui-lib/lib/ocm/components/clusterConfiguration/operators

1 file changed

+3
-0
lines changed

libs/ui-lib/lib/ocm/components/clusterConfiguration/operators/bundleSpecs.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as React from 'react';
22
import { List, ListItem } from '@patternfly/react-core';
3+
import { getYearForAssistedInstallerDocumentationLink } from '../../../../common/config/docs_links';
34

45
export type BundleSpec = {
56
incompatibleBundles?: string[];
@@ -30,11 +31,13 @@ export const bundleSpecs: { [key: string]: BundleSpec } = {
3031
incompatibleBundles: [],
3132
Description: () => (
3233
<List>
34+
<ListItem>GPUs are recommended for optimal AI/ML workload performance.</ListItem>
3335
<ListItem>
3436
NVIDIA GPU, AMD GPU and Kernel Module Management may or may not be installed based on the
3537
GPU discovered on your hosts.
3638
</ListItem>
3739
</List>
3840
),
41+
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`,
3942
},
4043
};

0 commit comments

Comments
 (0)