diff --git a/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachines.yaml b/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachines.yaml index f775114990..36dfb02772 100644 --- a/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachines.yaml +++ b/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachines.yaml @@ -1373,6 +1373,13 @@ spec: Mutually exclusive with VGPUProfile. format: int32 type: integer + vGPUProfile: + description: |- + VGPUProfile is the profile name of a virtual machine's vGPU, in string. + Defaults to the eponymous property value in the template from which the + virtual machine is cloned. + Mutually exclusive with DeviceID and VendorID. + type: string vendorId: description: |- VendorId is the vendor ID of a virtual machine's PCI, in integer. @@ -1381,13 +1388,6 @@ spec: Mutually exclusive with VGPUProfile. format: int32 type: integer - vgpuProfile: - description: |- - VGPUProfile is the profile name of a virtual machine's vGPU, in string. - Defaults to the eponymous property value in the template from which the - virtual machine is cloned. - Mutually exclusive with DeviceID and VendorID. - type: string type: object type: array powerOffMode: diff --git a/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachinetemplates.yaml b/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachinetemplates.yaml index a9518be232..54733547a6 100644 --- a/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachinetemplates.yaml +++ b/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspheremachinetemplates.yaml @@ -1248,6 +1248,13 @@ spec: Mutually exclusive with VGPUProfile. format: int32 type: integer + vGPUProfile: + description: |- + VGPUProfile is the profile name of a virtual machine's vGPU, in string. + Defaults to the eponymous property value in the template from which the + virtual machine is cloned. + Mutually exclusive with DeviceID and VendorID. + type: string vendorId: description: |- VendorId is the vendor ID of a virtual machine's PCI, in integer. @@ -1256,13 +1263,6 @@ spec: Mutually exclusive with VGPUProfile. format: int32 type: integer - vgpuProfile: - description: |- - VGPUProfile is the profile name of a virtual machine's vGPU, in string. - Defaults to the eponymous property value in the template from which the - virtual machine is cloned. - Mutually exclusive with DeviceID and VendorID. - type: string type: object type: array powerOffMode: diff --git a/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspherevms.yaml b/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspherevms.yaml index a35692c085..333df3fe42 100644 --- a/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspherevms.yaml +++ b/config/default/crd/bases/infrastructure.cluster.x-k8s.io_vspherevms.yaml @@ -1461,6 +1461,13 @@ spec: Mutually exclusive with VGPUProfile. format: int32 type: integer + vGPUProfile: + description: |- + VGPUProfile is the profile name of a virtual machine's vGPU, in string. + Defaults to the eponymous property value in the template from which the + virtual machine is cloned. + Mutually exclusive with DeviceID and VendorID. + type: string vendorId: description: |- VendorId is the vendor ID of a virtual machine's PCI, in integer. @@ -1469,13 +1476,6 @@ spec: Mutually exclusive with VGPUProfile. format: int32 type: integer - vgpuProfile: - description: |- - VGPUProfile is the profile name of a virtual machine's vGPU, in string. - Defaults to the eponymous property value in the template from which the - virtual machine is cloned. - Mutually exclusive with DeviceID and VendorID. - type: string type: object type: array powerOffMode: diff --git a/docs/gpu-vgpu.md b/docs/gpu-vgpu.md index bc37b238aa..81d1ea19d1 100644 --- a/docs/gpu-vgpu.md +++ b/docs/gpu-vgpu.md @@ -90,7 +90,7 @@ spec: template: '${VSPHERE_TEMPLATE}' thumbprint: '${VSPHERE_TLS_THUMBPRINT}' pciDevices: - - vgpuProfile: "grid_t4-1a" # value from above + - vGPUProfile: "grid_t4-1a" # value from above ``` Set the required values for the other fields and the cluster template is ready for use.