Skip to content

Commit 6313d0c

Browse files
committed
[core][ci] comment out the old image id which causing an ssh timeout issue in the aws cluster launcher yaml
Signed-off-by: Rueian Huang <rueiancsie@gmail.com>
1 parent b0320b1 commit 6313d0c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

python/ray/autoscaler/aws/example-full.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ provider:
4141
# Availability zone(s), comma-separated, that nodes may be launched in.
4242
# Nodes will be launched in the first listed availability zone and will
4343
# be tried in the subsequent availability zones if launching fails.
44-
availability_zone: us-west-2a,us-west-2b
44+
# availability_zone: us-west-2a,us-west-2b
4545
# Whether to allow node reuse. If set to False, nodes will be terminated
4646
# instead of stopped.
4747
cache_stopped_nodes: True # If not present, the default is True.
@@ -74,7 +74,7 @@ available_node_types:
7474
# Default AMI for us-west-2.
7575
# Check https://github.com/ray-project/ray/blob/master/python/ray/autoscaler/_private/aws/config.py
7676
# for default images for other zones.
77-
ImageId: ami-0387d929287ab193e
77+
# ImageId: ami-0387d929287ab193e
7878
# You can provision additional disk space with a conf as follows
7979
BlockDeviceMappings:
8080
- DeviceName: /dev/sda1
@@ -104,7 +104,7 @@ available_node_types:
104104
# Default AMI for us-west-2.
105105
# Check https://github.com/ray-project/ray/blob/master/python/ray/autoscaler/_private/aws/config.py
106106
# for default images for other zones.
107-
ImageId: ami-0387d929287ab193e
107+
# ImageId: ami-0387d929287ab193e
108108
# Run workers on spot by default. Comment this out to use on-demand.
109109
# NOTE: If relying on spot instances, it is best to specify multiple different instance
110110
# types to avoid interruption when one instance type is experiencing heightened demand.

python/ray/autoscaler/launch_and_verify_cluster.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ def get_docker_image(docker_override):
9797
applicable.
9898
"""
9999
if docker_override == "latest":
100-
return "rayproject/ray:latest-py39"
100+
return "rayproject/ray:latest-py310"
101101
elif docker_override == "nightly":
102-
return "rayproject/ray:nightly-py39"
102+
return "rayproject/ray:nightly-py310"
103103
elif docker_override == "commit":
104104
if re.match("^[0-9]+.[0-9]+.[0-9]+$", ray.__version__):
105-
return f"rayproject/ray:{ray.__version__}.{ray.__commit__[:6]}-py39"
105+
return f"rayproject/ray:{ray.__version__}.{ray.__commit__[:6]}-py310"
106106
else:
107107
print(
108108
"Error: docker image is only available for "

0 commit comments

Comments
 (0)