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 41B5F2DBF6E for ; Tue, 2 Sep 2025 13:54:36 +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=1756821276; cv=none; b=PJxsFMih4SD46qt3ITk/W7ms2w61gYdU776NlbwK3p/S2QEcDPJvTYPOp3ZDyWa8AO2yliY6fQZm2/ceazDP1njIdhXtddhT0rERfsqhRsqKKTxzJux5SZk2atWHGUb9L2BSVA2sqZ2PYd7RJ+7gDjQUSuJT9ISsFlbCcYkUG3Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756821276; c=relaxed/simple; bh=aaCOBVhAX1aapsB4lIrDKMtC4HGshDplmE0lHYT2P1w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tIXEVxE67c2wrJ28qdtIrTNVlco6C6MQzOnXZR7uzaqi+K9L0pKvjExq0QKLcxCY94so6OR8NrPho/xqrPteRpzssEx7fIALZt8+P8pYCF5yLetTIyd4d22bB/h081ZJwdMAMI0AJK+gbCL70SO0sYwZFICFlxbBsYw4NR2+WyE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=XhZi1Cfq; 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="XhZi1Cfq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CFAAAC4CEED; Tue, 2 Sep 2025 13:54:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756821276; bh=aaCOBVhAX1aapsB4lIrDKMtC4HGshDplmE0lHYT2P1w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XhZi1Cfqu1KWNpgNqNtBlSk98FP+ZeQNtkUh1KJDTvkA2Q3co7U9nIVhxn/Gifytd brRhUrW1oOhla1n4ClLjY5R/Z4cIhvrxSsaU+9oPrmKKFo6VW5KMOlOgGIODwsRn7/ Qv7WDqvjOJUQ4G/gYB70m4dC4afmGvtZl56/DipX/yDKc4Jtmuw5V8Y7RhCL+B/IPV ZT1VkqwVdpBQ1YcHII6n3bVNw3n8MyaYSQGkQqquA6b6L85PT0kCmN+b12MIHEX6MB xA1C5E5MhVm/WvAoBF5x55HPgumUTfBiN/a3cH6gBeAbes9TdZaBoQVZAwwTS8rqnQ JV5vybHtB/RjQ== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v2 14/37] terraform/GCE: Fix the default disk throughput values Date: Tue, 2 Sep 2025 09:54:01 -0400 Message-ID: <20250902135426.815079-15-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250902135426.815079-1-cel@kernel.org> References: <20250902135426.815079-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