Relax node_id length limit to 256

This commit is contained in:
Jiawei Wang
2021-04-19 12:25:11 -07:00
parent bd67aeff26
commit 125fb04dbf
3 changed files with 7 additions and 7 deletions

View File

@@ -44,8 +44,8 @@ const (
maxAttachedVolumeMetadataSize = 256 * (1 << 10) // 256 kB
maxVolumeErrorMessageSize = 1024
csiNodeIDMaxLength = 128
csiNodeIDLongerMaxLength = 192
csiNodeIDMaxLength = 192
csiNodeIDLongerMaxLength = 256
)
// CSINodeValidationOptions contains the validation options for validating CSINode