From d501b9fbe636fb2780b3c4f42a511cac87cff4a3 Mon Sep 17 00:00:00 2001 From: adrienjt Date: Mon, 18 Oct 2021 16:20:11 -0700 Subject: [PATCH] exported const LocalSSDDiskSizeInGiB should have comment --- cluster-autoscaler/cloudprovider/gce/templates.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/gce/templates.go b/cluster-autoscaler/cloudprovider/gce/templates.go index 8fc904f453d5..7c24500da30b 100644 --- a/cluster-autoscaler/cloudprovider/gce/templates.go +++ b/cluster-autoscaler/cloudprovider/gce/templates.go @@ -40,6 +40,8 @@ import ( // GceTemplateBuilder builds templates for GCE nodes. type GceTemplateBuilder struct{} +// LocalSSDDiskSizeInGiB is the size of each local SSD in GiB +// (cf. https://cloud.google.com/compute/docs/disks/local-ssd) const LocalSSDDiskSizeInGiB = 375 // TODO: This should be imported from sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/common/constants.go