Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 5 changed files with 156 additions and 1 deletion.
104 changes: 104 additions & 0 deletions release/release_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2713,6 +2713,19 @@

alert: default

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 7200
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_gce.yaml

# - name: serve_serve_micro_benchmark_k8s
# group: Serve tests
# working_dir: serve_tests
Expand Down Expand Up @@ -2752,6 +2765,19 @@
alert: default
stable: False

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 3600
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_32_cpu_gce.yaml

- name: deployment_graph_wide_ensemble
group: Serve tests
working_dir: serve_tests
Expand All @@ -2771,6 +2797,19 @@
alert: default
stable: False

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 3600
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_32_cpu_gce.yaml

- name: serve_handle_long_chain
group: Serve tests
working_dir: serve_tests
Expand All @@ -2790,6 +2829,19 @@
alert: default
stable: False

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 3600
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_32_cpu_gce.yaml

- name: serve_handle_wide_ensemble
group: Serve tests
working_dir: serve_tests
Expand All @@ -2809,6 +2861,19 @@
alert: default
stable: False

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 3600
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_32_cpu_gce.yaml


- name: serve_micro_protocol_grpc_benchmark
group: Serve tests
Expand All @@ -2828,6 +2893,19 @@

alert: default

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 7200
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_gce.yaml

- name: serve_micro_protocol_http_benchmark
group: Serve tests
working_dir: serve_tests
Expand All @@ -2846,6 +2924,19 @@

alert: default

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 7200
cluster:
cluster_env: app_config.yaml
cluster_compute: compute_tpl_single_node_gce.yaml


- name: serve_resnet_benchmark
group: Serve tests
Expand All @@ -2865,6 +2956,19 @@

alert: default

variations:
- __suffix__: aws
- __suffix__: gce
env: gce
frequency: manual
smoke_test:
frequency: manual
run:
timeout: 7200
cluster:
cluster_env: gpu_app_config.yaml
cluster_compute: compute_tpl_gpu_node_gce.yaml

########################
# Train tests
########################
Expand Down
2 changes: 1 addition & 1 deletion release/serve_tests/compute_tpl_32_cpu_gce.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ head_node_type:

worker_node_types:
- name: worker_node
instance_type: n2-standard-32 # m5.4xlarge
instance_type: n2-standard-32 # m5.8xlarge
min_workers: 32
max_workers: 32
use_spot: false
17 changes: 17 additions & 0 deletions release/serve_tests/compute_tpl_gpu_node_gce.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
region: us-west1
allowed_azs:
- us-west1-b

max_workers: 32

head_node_type:
name: head_node
instance_type: n1-standard-16-nvidia-tesla-t4-1 # g4dn.4xlarge

worker_node_types:
- name: worker_node
instance_type: n2-standard-16 # m5.4xlarge
min_workers: 0
max_workers: 1
use_spot: false
17 changes: 17 additions & 0 deletions release/serve_tests/compute_tpl_single_node_32_cpu_gce.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
region: us-west1
allowed_azs:
- us-west1-c

max_workers: 0

head_node_type:
name: head_node
instance_type: n2-standard-32 # m5.8xlarge

worker_node_types:
- name: worker_node
instance_type: n2-standard-32 # m5.8xlarge
min_workers: 0
max_workers: 0
use_spot: false
17 changes: 17 additions & 0 deletions release/serve_tests/compute_tpl_single_node_gce.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
region: us-west1
allowed_azs:
- us-west1-c

max_workers: 0

head_node_type:
name: head_node
instance_type: n2-standard-16 # m5.4xlarge

worker_node_types:
- name: worker_node
instance_type: n2-standard-16 # m5.4xlarge
min_workers: 0
max_workers: 0
use_spot: false

0 comments on commit a9431c7

Please sign in to comment.