Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import * as React from 'react';
import { List, ListItem } from '@patternfly/react-core';
import { OPENSHIFT_AI_REQUIREMENTS_LINK } from '../../../../common';

export type BundleSpec = {
noSNO?: boolean;
Expand All @@ -27,36 +26,16 @@ export const bundleSpecs: { [key: string]: BundleSpec } = {
</List>
),
},
'openshift-ai-nvidia': {
'openshift-ai': {
noSNO: true,
incompatibleBundles: ['openshift-ai-amd'],
incompatibleBundles: [],
Description: () => (
<List>
<ListItem>At least two worker nodes.</ListItem>
<ListItem>
Each worker node requires 32 additional GiB of memory and 8 additional CPUs.
NVIDIA GPU, AMD GPU and Kernel Module Management may or may not be installed based on the
GPU discovered on your hosts.
</ListItem>
<ListItem>At least one supported NVIDIA GPU.</ListItem>
<ListItem>
Nodes that have NVIDIA GPUs installed need to have secure boot disabled.
</ListItem>
</List>
),
docsLink: OPENSHIFT_AI_REQUIREMENTS_LINK,
},
'openshift-ai-amd': {
noSNO: true,
incompatibleBundles: ['openshift-ai-nvidia'],
Description: () => (
<List>
<ListItem>At least two worker nodes.</ListItem>
<ListItem>
Each worker node requires 32 additional GiB of memory and 8 additional CPUs.
</ListItem>
<ListItem>At least one supported AMD GPU.</ListItem>
<ListItem>Nodes that have AMD GPUs installed need to have secure boot disabled.</ListItem>
</List>
),
docsLink: OPENSHIFT_AI_REQUIREMENTS_LINK,
},
};
Loading