mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

The test currently uses 6 GPUs out of 8 available, so we can get rid of one instance. Savings will be 25% for one instance less (3 instead of 4).
29 lines
No EOL
588 B
YAML
29 lines
No EOL
588 B
YAML
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
|
|
region: us-west-2
|
|
|
|
max_workers: 3
|
|
|
|
head_node_type:
|
|
name: head_node
|
|
instance_type: g3.8xlarge
|
|
|
|
worker_node_types:
|
|
- name: worker_node
|
|
instance_type: g3.8xlarge
|
|
min_workers: 2
|
|
max_workers: 2
|
|
use_spot: false
|
|
|
|
aws:
|
|
TagSpecifications:
|
|
- ResourceType: "instance"
|
|
Tags:
|
|
- Key: anyscale-user
|
|
Value: '{{env["ANYSCALE_USER"]}}'
|
|
- Key: anyscale-expiration
|
|
Value: '{{env["EXPIRATION_2D"]}}'
|
|
|
|
BlockDeviceMappings:
|
|
- DeviceName: /dev/sda1
|
|
Ebs:
|
|
VolumeSize: 202 |