1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/app/react/kubernetes/cluster/NodeView/ConfirmUpdateNode.tsx
Ali 14a581e86b
fix(dialog): dialog migration issues [EE-5385] (#8849)
* fix(dialog): dialog migration issues [EE-5385]

* don't highlight slider tooltip text

---------

Co-authored-by: testa113 <testa113>
2023-05-04 16:23:27 +12:00

46 lines
1.7 KiB
TypeScript

import { ModalType } from '@@/modals';
import { confirm } from '@@/modals/confirm';
import { buildConfirmButton } from '@@/modals/utils';
export function confirmUpdateNode(
taintsWarning: boolean,
labelsWarning: boolean,
cordonWarning: boolean,
drainWarning: boolean
) {
let message;
if (taintsWarning && !labelsWarning) {
message =
'Changes to taints will immediately deschedule applications running on this node without the corresponding tolerations. Do you wish to continue?';
} else if (!taintsWarning && labelsWarning) {
message =
'Removing or changing a label that is used might prevent applications from being scheduled on this node in the future. Do you wish to continue?';
} else if (taintsWarning && labelsWarning) {
message = (
<>
<p>
Changes to taints will immediately deschedule applications running on
this node without the corresponding tolerations.
</p>
<p>
Removing or changing a label that is used might prevent applications
from scheduling on this node in the future.
</p>
<p>Do you wish to continue?</p>
</>
);
} else if (cordonWarning) {
message =
'Marking this node as unschedulable will effectively cordon the node and prevent any new workload from being scheduled on that node. Are you sure?';
} else if (drainWarning) {
message =
'Draining this node will cause all workloads to be evicted from that node. This might lead to some service interruption. Are you sure?';
}
return confirm({
title: 'Are you sure?',
modalType: ModalType.Warn,
message,
confirmButton: buildConfirmButton('Update', 'primary'),
});
}