From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 00E531F3FDC for ; Thu, 4 Sep 2025 15:15:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998936; cv=none; b=lgkI4RRKA8WNJXWUfzFU1GWZBZo1Uys/VBEbDQYPgkRGKDCfmXraOJMj7OHc5sqqvuBVFXMkGn03BssulvT6Sf4btqgHXYrhR8YhehnlxROK9BxZsVCnjOKPNPSBOVE+8jH10++zl3K/4kRZWePUYW+5tD0ujHs481nhI5ATGgk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998936; c=relaxed/simple; bh=aaCOBVhAX1aapsB4lIrDKMtC4HGshDplmE0lHYT2P1w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fWdnmtH6eTGOi7yIXv68Lf6q4PIDTQRHV+4aW7X2xdabjmTSs6VLmmPIpV8FsD7TwSm0yuLMp4o3b1ixXMWysZxEBgzOWTdXicqGnEypwrGdwEXIpRj+NtNSg/TJoDaI/v0JL/027iJixrppNOWeLO7455VmOMCZNQFkfiElCpM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=buKDB7KJ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="buKDB7KJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4C4F1C4CEF9; Thu, 4 Sep 2025 15:15:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998935; bh=aaCOBVhAX1aapsB4lIrDKMtC4HGshDplmE0lHYT2P1w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=buKDB7KJQWd9iVhBptzqOvF3t3S85OyNRrZ70+gBEtjHzeuuOn3WB7DqAmnFk3APe ufz7doBYYz1J30phMBGYYw3IYVLgFZ1EsqOwIGxsbxCPsv69UKxlgXfuiJcyWaJXJt vm/Di40qofdcdOfRfAy4ARJzSTe2FJrRSzyfGAGL/W43YtbgKj19S7y6QvlXBMxrhF 3qSW7uo61rzZamekY27Xd3SzljldJiGPfsF+rirysMeklNq3yFcIymYINtBa49GlM0 gu56/Z8HKsUEr8+Gl6siFhLSu9bo44GkU2/TxKhurxNYN50rwOVFVMfl0pAL466ktg /BCQPdsF+710g== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 14/36] terraform/GCE: Fix the default disk throughput values Date: Thu, 4 Sep 2025 11:15:02 -0400 Message-ID: <20250904151526.1596282-15-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250904151526.1596282-1-cel@kernel.org> References: <20250904151526.1596282-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- terraform/gce/kconfigs/Kconfig.storage | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/gce/kconfigs/Kconfig.storage b/terraform/gce/kconfigs/Kconfig.storage index a71a5d62753b..717f50dfe32d 100644 --- a/terraform/gce/kconfigs/Kconfig.storage +++ b/terraform/gce/kconfigs/Kconfig.storage @@ -195,14 +195,14 @@ config TERRAFORM_GCE_DISK_IOPS int "Provisioned IOPS for each attached disk" output yaml range 125 120000 - default 240 + default 3000 depends on TERRAFORM_GCE_DISK_NEEDS_IOPS config TERRAFORM_GCE_DISK_THROUGHPUT int "Provisioned throughput for each attached disk" output yaml - range 125 600 - default 240 + range 125 2400 + default 300 depends on TERRAFORM_GCE_DISK_NEEDS_THROUGHPUT config TERRAFORM_GCE_DATA_VOLUME_DEVICE_FILE_NAME -- 2.51.0