1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

B OpenNebula/one#6375: Remove duplicate CPU field (#2804)

This commit is contained in:
vichansson 2023-11-07 13:34:44 +02:00 committed by GitHub
parent afea9c2fea
commit 9f6b8a1891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@
import { string, boolean } from 'yup'
import { useGetHostsQuery } from 'client/features/OneApi/host'
import { getKvmMachines, getKvmCpuModels } from 'client/models/Host'
import { getKvmMachines } from 'client/models/Host'
import { Field, arrayToOptions } from 'client/utils'
import {
T,
@ -75,23 +75,23 @@ export const MACHINE_TYPES = {
.default(() => undefined),
}
/** @type {Field} CPU Model field */
export const CPU_MODEL = {
name: 'OS.MODEL',
label: T.CpuModel,
notOnHypervisors: [vcenter, firecracker, lxc],
type: INPUT_TYPES.SELECT,
values: () => {
const { data: hosts = [] } = useGetHostsQuery()
const kvmCpuModels = getKvmCpuModels(hosts)
// /** @type {Field} CPU Model field */
// export const CPU_MODEL = {
// name: 'OS.MODEL',
// label: T.CpuModel,
// notOnHypervisors: [vcenter, firecracker, lxc],
// type: INPUT_TYPES.SELECT,
// values: () => {
// const { data: hosts = [] } = useGetHostsQuery()
// const kvmCpuModels = getKvmCpuModels(hosts)
return arrayToOptions(kvmCpuModels)
},
validation: string()
.trim()
.notRequired()
.default(() => undefined),
}
// return arrayToOptions(kvmCpuModels)
// },
// validation: string()
// .trim()
// .notRequired()
// .default(() => undefined),
// }
/** @type {Field} Root device field */
export const ROOT_DEVICE = {
@ -198,7 +198,6 @@ export const BOOT_FIELDS = [
ARCH,
SD_DISK_BUS,
MACHINE_TYPES,
CPU_MODEL,
ROOT_DEVICE,
KERNEL_CMD,
BOOTLOADER,