From d4d557a5f6377f4de2620bbbd785c4e4b0d097a3 Mon Sep 17 00:00:00 2001 From: Prince Datta Date: Thu, 8 Aug 2024 20:35:28 +0530 Subject: [PATCH] Adding the ssd flag to change the disk type (#1211) --- integration_tests/dataproc_test_case.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration_tests/dataproc_test_case.py b/integration_tests/dataproc_test_case.py index d2c5a39eb..6f2bd9f28 100644 --- a/integration_tests/dataproc_test_case.py +++ b/integration_tests/dataproc_test_case.py @@ -165,6 +165,9 @@ def createCluster(self, args.append("--master-boot-disk-size={}".format(boot_disk_size)) args.append("--worker-boot-disk-size={}".format(boot_disk_size)) + args.append("--master-boot-disk-type=pd-ssd") + args.append("--worker-boot-disk-type=pd-ssd") + args.append("--format=json") args.append("--region={}".format(self.REGION))