mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00

Adds basic jobs release tests that connects to the test cluster and runs a basic tune script. Specifies `ray[tune]` in the `runtime_env` `pip` dependencies. Two tests: (1) Uses a local `working_dir` (2) Uses a remote working_dir from a zip github URL.
26 lines
576 B
YAML
26 lines
576 B
YAML
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
|
|
region: us-west-2
|
|
|
|
max_workers: 4
|
|
|
|
head_node_type:
|
|
name: head_node
|
|
# 4 cpus, x86, 32G mem, 10Gb NIC
|
|
instance_type: m5.xlarge
|
|
|
|
worker_node_types:
|
|
- name: worker_node
|
|
# 4 cpus, x86, 32G mem, 10Gb NIC
|
|
instance_type: m5.xlarge
|
|
min_workers: 4
|
|
max_workers: 4
|
|
use_spot: false
|
|
|
|
aws:
|
|
TagSpecifications:
|
|
- ResourceType: "instance"
|
|
Tags:
|
|
- Key: anyscale-user
|
|
Value: '{{env["ANYSCALE_USER"]}}'
|
|
- Key: anyscale-expiration
|
|
Value: '{{env["EXPIRATION_1D"]}}'
|