compute_tpl_aws.yaml 624 B

12345678910111213141516171819202122232425262728
  1. cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
  2. region: us-west-2
  3. max_workers: 8
  4. head_node_type:
  5. name: head_node
  6. instance_type: m5.xlarge
  7. # We should be good with 2 GPUs and 50 CPUs.
  8. worker_node_types:
  9. - name: worker_node_cpu
  10. instance_type: m5.xlarge # 4 CPU
  11. min_workers: 6
  12. max_workers: 6
  13. use_spot: false
  14. - name: worker_node_gpu
  15. instance_type: g3.4xlarge # 1 GPU and 16 CPU
  16. min_workers: 2
  17. max_workers: 2
  18. use_spot: false
  19. aws:
  20. BlockDeviceMappings:
  21. - DeviceName: /dev/sda1
  22. Ebs:
  23. DeleteOnTermination: true
  24. VolumeSize: 500