-
Notifications
You must be signed in to change notification settings - Fork 1.8k
OSDOCS-12804#Increase vSphere max vols per node #91472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Module included in the following assemblies: | ||
// | ||
// * storage/container_storage_interface/persistent-storage-csi-vsphere.adoc | ||
// | ||
|
||
:_mod-docs-content-type: CONCEPT | ||
[id="persistent-storage-csi-vsphere-increase-max-vols-per-node-overview_{context}"] | ||
= Increasing maximum volumes per node for vSphere | ||
|
||
For VMware vSphere version 7, {product-title} restricts the maximum number of volumes per node to 59. | ||
|
||
However, for vSphere version 8 or later, you can increase the allowable number of volumes per node to a maximum of 255. Otherwise, the default value remains at 59. | ||
|
||
[IMPORTANT] | ||
==== | ||
You must have an homogeneous vSphere 8 environment that only contains ESXi 8 hypervisors. Heterogeneous environments that contain a mix of versions of ESXi other than 8 are not allowed. In such heterogenous environment, if you set a value greater than 59, the cluster degrades. | ||
==== | ||
|
||
.Limitations | ||
|
||
* You must be running VMware vSphere version 8 or later. | ||
|
||
lpettyjo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
* You can potentially exceed the limit of 2048 virtual disks per host if you increase the maximum number of volumes per node on enough nodes. This can occur because there is no Distributed Resource scheduler (DRS) validation for vSphere to ensure you do not exceed this limit. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Module included in the following assemblies: | ||
// | ||
// * storage/container_storage_interface/persistent-storage-csi-vsphere.adoc | ||
// | ||
|
||
:_mod-docs-content-type: PROCEDURE | ||
[id="persistent-storage-csi-vsphere-increase-max-vols-per-node_{context}"] | ||
= Increasing the maximum allowable volumes per node for vSphere | ||
|
||
.Prerequisites | ||
lpettyjo marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As prerequisite customers need to set pvscsiCtrlr256DiskSupportEnabled to true in vCenter. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gcharot @gnufied @RomanBednar I searched on this parameter in vSphere docs and didn't find anything, so I don't have a specific place to point users to. Maybe we need to discuss how to approach this due to its sensitive nature. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it is not documented anywhere in a public facing doc from Broadcom. That is the rub. @gcharot should we document our own stuff or ask customer to talk to Broadcom? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should mention the parameter name but clearly mention that this is not fully supported by VMware as well as pointing out this is a cluster wide option. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
* Access to the {product-title} web console. | ||
lpettyjo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
* Access to the cluster as a user with the cluster-admin role. | ||
|
||
* Access to VMware vSphere vCenter. | ||
|
||
* In vCenter, ensure that the parameter `pvscsiCtrlr256DiskSupportEnabled` is set to 'True'. | ||
+ | ||
[IMPORTANT] | ||
==== | ||
Changing the `pvscsiCtrlr256DiskSupportEnabled` parameter is not fully supported by VMware. Also, the parameter is a cluster-wide option. | ||
==== | ||
|
||
.Procedure | ||
|
||
Use the following procedure to increase the maximum number of volumes per node for vSphere: | ||
|
||
. Click *Administration* > *CustomResourceDefinitions*. | ||
|
||
. On the *CustomResourceDefinitions* page next to the *Name* dropdown box, type "clustercsidriver". | ||
|
||
. Click *CRD ClusterCSIDriver*. | ||
|
||
. Click the *Instances* tab. | ||
|
||
. Click *csi.vsphere.vmware.com*. | ||
|
||
. Click the *YAML* tab. | ||
|
||
. Set the parameter `spec.driverConfig.driverType` to `vSphere`. | ||
|
||
. Add the parameter `spec.driverConfig.vSphere.maxAllowedBlockVolumesPerNode` to the YAML file, and provide a value for the desired maximum number of volumes per node as in the following sample YAML file: | ||
+ | ||
[source,yaml] | ||
.Sample YAML file for adding the parameter maxAllowedBlockVolumesPerNode | ||
---- | ||
... | ||
spec: | ||
driverConfig: | ||
driverType: vSphere | ||
vSphere: | ||
maxAllowedBlockVolumesPerNode: <1> | ||
... | ||
---- | ||
<1> Enter the desired value here for the maximum number of volumes per node. The default is 59. The minimum value is 1 and the maximum value is 255. | ||
|
||
. Click *Save*. |
Uh oh!
There was an error while loading. Please reload this page.