From 4a0e242b3c16382ad30d316bb2c9d157f7ab8c33 Mon Sep 17 00:00:00 2001 From: Michelle Au Date: Wed, 22 Nov 2017 15:04:58 -0800 Subject: [PATCH] Add NODE_LOCAL_SSDS_EXT to config-test --- cluster/gce/config-test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cluster/gce/config-test.sh b/cluster/gce/config-test.sh index f19b6a6925f..159d88e28d3 100755 --- a/cluster/gce/config-test.sh +++ b/cluster/gce/config-test.sh @@ -36,6 +36,11 @@ MASTER_ROOT_DISK_SIZE=${MASTER_ROOT_DISK_SIZE:-$(get-master-root-disk-size)} NODE_DISK_TYPE=${NODE_DISK_TYPE:-pd-standard} NODE_DISK_SIZE=${NODE_DISK_SIZE:-100GB} NODE_LOCAL_SSDS=${NODE_LOCAL_SSDS:-0} +# An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices +# Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple +# configurations by seperating them by a semi-colon ex. "2,scsi,fs;1,nvme,block" +# is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD. +NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-} NODE_ACCELERATORS=${NODE_ACCELERATORS:-""} REGISTER_MASTER_KUBELET=${REGISTER_MASTER:-true} KUBE_APISERVER_REQUEST_TIMEOUT=300