mirror of
https://github.com/vale981/ray
synced 2025-03-11 21:56:39 -04:00
88 lines
2.6 KiB
YAML
88 lines
2.6 KiB
YAML
- name: aws_no_sync_down
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_aws_4x2.yaml
|
|
|
|
run:
|
|
timeout: 600
|
|
prepare: python wait_cluster.py 4 600
|
|
script: python workloads/run_cloud_test.py no_sync_down
|
|
|
|
- name: aws_ssh_sync
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_aws_4x2.yaml
|
|
|
|
run:
|
|
timeout: 600
|
|
prepare: python wait_cluster.py 4 600
|
|
script: python workloads/run_cloud_test.py ssh_sync
|
|
|
|
- name: aws_durable_upload
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_aws_4x2.yaml
|
|
|
|
run:
|
|
timeout: 600
|
|
prepare: python wait_cluster.py 4 600
|
|
script: python workloads/run_cloud_test.py durable_upload --bucket s3://data-test-ilr/durable_upload
|
|
|
|
- name: aws_no_durable_upload
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_aws_4x2.yaml
|
|
|
|
run:
|
|
timeout: 600
|
|
prepare: python wait_cluster.py 4 600
|
|
script: python workloads/run_cloud_test.py no_durable_upload --bucket s3://data-test-ilr/durable_upload
|
|
|
|
- name: gcp_k8s_no_sync_down
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_gcp_k8s_4x8.yaml
|
|
cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
|
|
|
|
run:
|
|
use_connect: True
|
|
timeout: 600
|
|
# Remove --cpus-per-trial 8 once n2-standard-2 is supported
|
|
script: python workloads/run_cloud_test.py no_sync_down --cpus-per-trial 8
|
|
|
|
- name: gcp_k8s_ssh_sync
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_gcp_k8s_4x8.yaml
|
|
cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
|
|
|
|
run:
|
|
use_connect: True
|
|
timeout: 600
|
|
# Remove --cpus-per-trial 8 once n2-standard-2 is supported
|
|
script: python workloads/run_cloud_test.py ssh_sync --cpus-per-trial 8
|
|
|
|
- name: gcp_k8s_durable_upload
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_gcp_k8s_4x8.yaml
|
|
cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
|
|
|
|
run:
|
|
use_connect: True
|
|
timeout: 600
|
|
# Remove --cpus-per-trial 8 once n2-standard-2 is supported
|
|
script: python workloads/run_cloud_test.py durable_upload --cpus-per-trial 8 --bucket gs://jun-riot-test/durable_upload
|
|
|
|
|
|
- name: gcp_k8s_no_durable_upload
|
|
cluster:
|
|
app_config: app_config.yaml
|
|
compute_template: tpl_gcp_k8s_4x8.yaml
|
|
cloud_id: cld_k8WcxPgjUtSE8RVmfZpTLuKM # anyscale_k8s_gcp_cloud
|
|
|
|
run:
|
|
use_connect: True
|
|
timeout: 600
|
|
# Remove --cpus-per-trial 8 once n2-standard-2 is supported
|
|
script: python workloads/run_cloud_test.py no_durable_upload --cpus-per-trial 8 --bucket gs://jun-riot-test/durable_upload
|