File tree 1 file changed +20
-0
lines changed
python/ray/autoscaler/local
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ provider:
15
15
# node. This number should be >= 0.
16
16
# Set to 0 by default.
17
17
min_workers : 0
18
+
18
19
# The maximum number of worker nodes to add to the Ray cluster in addition to the head node.
19
20
# This takes precedence over min_workers.
20
21
# Required for automatically managed clusters.
33
34
# setup_commands:
34
35
# - if [ $(which ray) ]; then pip uninstall ray -y; fi
35
36
# - pip install -U "ray[default] @ https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp37-cp37m-manylinux2014_x86_64.whl"
37
+
38
+ # Defaults are empty to avoid any surprise changes to on-prem cluster's state.
39
+ # Refer to example yamls for examples of ray installation in setup commands.
40
+ initialization_commands : []
41
+ setup_commands : []
42
+ head_setup_commands : []
43
+ worker_setup_commands : []
44
+
45
+ available_node_types : {}
46
+ head_node_type : {}
47
+
48
+ head_start_ray_commands : []
49
+ worker_start_ray_commands : []
50
+
51
+ file_mounts : {}
52
+ cluster_synced_files : []
53
+ file_mounts_sync_continuously : false
54
+ rsync_exclude : []
55
+ rsync_filter : []
You can’t perform that action at this time.
0 commit comments