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
5 changes: 3 additions & 2 deletions libs/ui-lib/lib/common/components/operators/operatorSpecs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import {
AUTHORINO_OPERATOR_LINK,
CNV_LINK,
FENCE_AGENTS_REMEDIATION_LINK,
getKubeDeschedulerLink,
getLsoLink,
getLvmsDocsLink,
getMceDocsLink,
Expand Down Expand Up @@ -154,10 +155,10 @@ export const getOperatorSpecs = (useLVMS?: boolean): { [key: string]: OperatorSp
[OPERATOR_NAME_KUBE_DESCHEDULER]: {
title: 'Kube Descheduler',
featureId: 'KUBE_DESCHEDULER',
Description: () => (
Description: ({ openshiftVersion }) => (
<>
Evicts pods to reschedule them onto more suitable nodes.{' '}
<ExternalLink href={NODE_HEALTHCHECK_LINK}>Learn more</ExternalLink>
<ExternalLink href={getKubeDeschedulerLink(openshiftVersion)}>Learn more</ExternalLink>
</>
),
notStandalone: true,
Expand Down
Loading