fix(striker-ui): rename 'node pair'->node in provision server

main
Tsu-ba-me 1 year ago
parent 32ee5c65c9
commit 94480c68d6
  1. 24
      striker-ui/components/ProvisionServerDialog.tsx

@ -549,8 +549,8 @@ const filterAnvils: FilterAnvilsFunction = (
let anvilStorageGroupFreeMax: bigint = BIGINT_ZERO; let anvilStorageGroupFreeMax: bigint = BIGINT_ZERO;
let anvilStorageGroupFreeTotal: bigint = BIGINT_ZERO; let anvilStorageGroupFreeTotal: bigint = BIGINT_ZERO;
// Summarize storage groups in this anvil node pair to produce all // Summarize storage groups in this anvil node to produce all UUIDs, max
// UUIDs, max free space, and total free space. // free space, and total free space.
storageGroups.forEach(({ storageGroupUUID, storageGroupFree }) => { storageGroups.forEach(({ storageGroupUUID, storageGroupFree }) => {
if (testIncludeStorageGroup(storageGroupUUID)) { if (testIncludeStorageGroup(storageGroupUUID)) {
anvilStorageGroupUUIDs.push(storageGroupUUID); anvilStorageGroupUUIDs.push(storageGroupUUID);
@ -563,17 +563,17 @@ const filterAnvils: FilterAnvilsFunction = (
}); });
const usableTests: (() => boolean)[] = [ const usableTests: (() => boolean)[] = [
// Does this anvil node pair have at least one storage group? // Does this anvil node have at least one storage group?
() => storageGroups.length > 0, () => storageGroups.length > 0,
// Does this anvil node pair have enough CPU cores? // Does this anvil node have enough CPU cores?
() => cpuCores <= anvilTotalCPUCores, () => cpuCores <= anvilTotalCPUCores,
// Does this anvil node pair have enough memory? // Does this anvil node have enough memory?
() => memory <= anvilTotalAvailableMemory, () => memory <= anvilTotalAvailableMemory,
// For every virtual disk: // For every virtual disk:
// 1. Does this anvil node pair have the selected storage group which // 1. Does this anvil node have the selected storage group which
// will contain the VD? // will contain the VD?
// 2. Does the selected storage group OR any storage group on this // 2. Does the selected storage group OR any storage group on this
// anvil node pair have enough free space? // anvil node have enough free space?
() => () =>
storageGroupUUIDs.every((uuid, index) => { storageGroupUUIDs.every((uuid, index) => {
const vdSize = vdSizes[index] ?? BIGINT_ZERO; const vdSize = vdSizes[index] ?? BIGINT_ZERO;
@ -588,15 +588,15 @@ const filterAnvils: FilterAnvilsFunction = (
return hasStorageGroup && hasEnoughStorage; return hasStorageGroup && hasEnoughStorage;
}), }),
// Do storage groups on this anvil node pair have enough free space // Do storage groups on this anvil node have enough free space to
// to contain multiple VDs? // contain multiple VDs?
() => () =>
Object.entries(storageGroupTotals).every(([uuid, total]) => Object.entries(storageGroupTotals).every(([uuid, total]) =>
uuid === 'all' uuid === 'all'
? total <= anvilStorageGroupFreeTotal ? total <= anvilStorageGroupFreeTotal
: total <= storageGroupUUIDMapToData[uuid].storageGroupFree, : total <= storageGroupUUIDMapToData[uuid].storageGroupFree,
), ),
// Does this anvil node pair have access to selected files? // Does this anvil node have access to selected files?
() => () =>
fileUUIDs.every( fileUUIDs.every(
(fileUUID) => (fileUUID) =>
@ -1352,7 +1352,7 @@ const ProvisionServerDialog = ({
<Grid direction="row" item xs={gridColumns}> <Grid direction="row" item xs={gridColumns}>
<BodyText> <BodyText>
Server <InlineMonoText text={inputServerNameValue} /> will be Server <InlineMonoText text={inputServerNameValue} /> will be
created on anvil node pair{' '} created on anvil node{' '}
<InlineMonoText <InlineMonoText
text={anvilUUIDMapToData[inputAnvilValue].anvilName} text={anvilUUIDMapToData[inputAnvilValue].anvilName}
/>{' '} />{' '}
@ -1696,7 +1696,7 @@ const ProvisionServerDialog = ({
inputLabelProps={{ inputLabelProps={{
isNotifyRequired: inputAnvilValue.length === 0, isNotifyRequired: inputAnvilValue.length === 0,
}} }}
label="Anvil node pair" label="Anvil node"
messageBoxProps={inputAnvilMessage} messageBoxProps={inputAnvilMessage}
selectItems={anvilSelectItems} selectItems={anvilSelectItems}
selectProps={{ selectProps={{

Loading…
Cancel
Save