diff --git a/sky/provision/gcp/instance_utils.py b/sky/provision/gcp/instance_utils.py index 36c3e2b39b1..74b9bd9770f 100644 --- a/sky/provision/gcp/instance_utils.py +++ b/sky/provision/gcp/instance_utils.py @@ -124,6 +124,11 @@ def stop( project=project_id, zone=zone, instance=instance, + # This is needed for the instance that has local SSDs attached by + # default, such as a2-highgpu-8g. Otherwise, an error will be + # raised. Refer to issue #2586 + # https://cloud.google.com/compute/docs/disks/local-ssd#stop_instance + discardLocalSsd=False, ).execute() return operation