chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:17:40 +08:00
commit f1825c8ceb
10096 changed files with 2364182 additions and 0 deletions
@@ -0,0 +1,22 @@
# An unique identifier for the head node and workers of this cluster.
cluster_name: nightly-test-minimal
max_workers: 1
idle_timeout_minutes: 2
# Cloud-provider specific configuration.
provider:
type: aws
region: us-west-2
cache_stopped_nodes: False
available_node_types:
ray.head.default:
resources: {}
node_config:
InstanceType: t3.large
ray.worker.default:
resources: {}
min_workers: 1
max_workers: 1
node_config:
InstanceType: t3.large
@@ -0,0 +1,16 @@
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}}
region: us-west-2
advanced_configurations_json:
IamInstanceProfile: {"Name": "ray-autoscaler-v1"}
head_node_type:
name: head_node
instance_type: t3.large
worker_node_types:
- name: worker_node
instance_type: t3.large
min_workers: 0
max_workers: 0
use_spot: false
@@ -0,0 +1,13 @@
base_image: {{ env["RAY_IMAGE_NIGHTLY_CPU"] | default("anyscale/ray:nightly-py39") }}
debian_packages: []
env_vars:
RAY_WHEEL_URL: {{ env["RAY_WHEELS"] | default("") }}
python:
pip_packages: []
conda_packages: []
post_build_cmds:
- pip3 uninstall -y ray && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
- pip3 install -U ray[default]
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}