diff --git a/tools/gce/create_linux_kokoro_performance_worker.sh b/tools/gce/create_linux_kokoro_performance_worker.sh index 63d54a48bfe..62e0fdf4ad7 100755 --- a/tools/gce/create_linux_kokoro_performance_worker.sh +++ b/tools/gce/create_linux_kokoro_performance_worker.sh @@ -30,7 +30,7 @@ CLOUD_PROJECT=grpc-testing ZONE=us-central1-b # this zone allows 32core machines INSTANCE_NAME="${1:-grpc-kokoro-performance-server1}" -MACHINE_TYPE=n1-standard-32 +MACHINE_TYPE=e2-standard-32 gcloud compute instances create "$INSTANCE_NAME" \ --project="$CLOUD_PROJECT" \ diff --git a/tools/gce/create_linux_kokoro_performance_worker_from_image.sh b/tools/gce/create_linux_kokoro_performance_worker_from_image.sh index 1b014ad4a8e..412015f8dc2 100755 --- a/tools/gce/create_linux_kokoro_performance_worker_from_image.sh +++ b/tools/gce/create_linux_kokoro_performance_worker_from_image.sh @@ -25,7 +25,7 @@ ZONE=us-central1-b # this zone allows 32core machines LATEST_PERF_WORKER_IMAGE=grpc-performance-kokoro-v5 # update if newer image exists INSTANCE_NAME="${1:-grpc-kokoro-performance-server}" -MACHINE_TYPE="${2:-n1-standard-32}" +MACHINE_TYPE="${2:-e2-standard-32}" gcloud compute instances create "$INSTANCE_NAME" \ --project="$CLOUD_PROJECT" \ diff --git a/tools/gce/create_windows_debug_worker.sh b/tools/gce/create_windows_debug_worker.sh index 3625df832a6..b24271f04b6 100755 --- a/tools/gce/create_windows_debug_worker.sh +++ b/tools/gce/create_windows_debug_worker.sh @@ -31,7 +31,7 @@ else INSTANCE_NAME="${USER}-windows-kokoro-debug1" fi -MACHINE_TYPE=n1-standard-8 +MACHINE_TYPE=e2-standard-8 TMP_DISK_NAME="$INSTANCE_NAME-temp-disk" gcloud compute disks create "$TMP_DISK_NAME" \