We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc87592 commit 0a5a8bdCopy full SHA for 0a5a8bd
pkg/gce-pd-csi-driver/node_test.go
@@ -415,6 +415,16 @@ func TestNodeGetVolumeLimits(t *testing.T) {
415
machineType: "a4x-max-4g",
416
expVolumeLimit: 127,
417
},
418
+ {
419
+ name: "a4x-max-8g", // -8g does not exist, testing edge case
420
+ machineType: "a4x-max-8g",
421
+ expVolumeLimit: 127,
422
+ },
423
424
+ name: "a4x-medgpu-nolssd", // does not exist, testing edge case
425
+ machineType: "a4x-medgpu-nolssd",
426
+ expVolumeLimit: volumeLimitBig,
427
428
}
429
430
for _, tc := range testCases {
0 commit comments