Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions python/ray/autoscaler/launch_and_verify_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ def get_docker_image(docker_override):
applicable.
"""
if docker_override == "latest":
return "rayproject/ray:latest-py39"
return "rayproject/ray:latest-py310"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

py39 images are not maintained anymore.

elif docker_override == "nightly":
return "rayproject/ray:nightly-py39"
return "rayproject/ray:nightly-py310"
elif docker_override == "commit":
if re.match("^[0-9]+.[0-9]+.[0-9]+$", ray.__version__):
return f"rayproject/ray:{ray.__version__}.{ray.__commit__[:6]}-py39"
return f"rayproject/ray:{ray.__version__}.{ray.__commit__[:6]}-py310"
else:
print(
"Error: docker image is only available for "
Expand Down Expand Up @@ -494,6 +494,7 @@ def run_ray_commands(
ensure_ssh_keys_azure()
elif provider_type == "aws":
download_ssh_key_aws()
config_yaml["provider"]["availability_zone"] = None
elif provider_type == "gcp":
download_ssh_key_gcp()
# Get the active account email
Expand Down