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.
2 parents e201c6b + 27658f8 commit 2d1c417Copy full SHA for 2d1c417
cluster/gce/gci/configure-helper.sh
@@ -364,6 +364,13 @@ function ensure-local-ssds() {
364
# The following mounts or symlinks NVMe devices
365
get-local-disk-num "nvme" "block"
366
local nvmeblocknum="${localdisknum}"
367
+ get-local-disk-num "nvme" "fs"
368
+ local nvmefsnum="${localdisknum}"
369
+ # Check if NVMe SSD specified.
370
+ if [ "${nvmeblocknum}" -eq "0" ] && [ "${nvmefsnum}" -eq "0" ]; then
371
+ echo "No local NVMe SSD specified."
372
+ return
373
+ fi
374
local i=0
375
for ssd in /dev/nvme*; do
376
if [ -e "${ssd}" ]; then
0 commit comments