Skip to content
Merged
Show file tree
Hide file tree
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
Expand Up @@ -106,7 +106,9 @@ const BundleCard = ({
const disabledReason = hasUnsupportedOperators
? 'Some operators in this bundle are not supported with the current configuration.'
: isSNO && bundleSpec?.noSNO
? 'This bundle is not available when deploying a Single Node OpenShift.'
? bundle.id === 'openshift-ai'
? 'This bundle is not available when deploying a Single Node OpenShift, but you can use the standalone operator instead.'
: 'This bundle is not available when deploying a Single Node OpenShift.'
: incompatibleBundle
? `Bundle cannot be installed together with ${
bundles.find(({ id }) => id === incompatibleBundle)?.title || incompatibleBundle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,7 @@ const getOpenShiftAIDisabledReason = (
if (isArm) {
return `${operatorTitle} is not available when ARM CPU architecture is selected.`;
}
if (isSNO(cluster)) {
return `${operatorTitle} is not available when deploying a Single Node OpenShift.`;
}

if (!isSupported) {
return `The installer cannot currently enable ${operatorTitle} with the selected OpenShift version, but it can be enabled later through the OpenShift Console once the installation is complete.`;
}
Expand Down
Loading