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,8 @@
name: testproject1
description: "Test project for docker environment"
environment:
dockerfile: "Dockerfile"
cluster:
config: cluster.yaml
@@ -0,0 +1,4 @@
name: testmissingcluster
environment:
shell: "one command"
@@ -0,0 +1,4 @@
name: testmissingyaml
cluster:
config: cluster.yaml
@@ -0,0 +1,9 @@
name: testproject3
environment:
dockerfile: "Dockerfile"
dockerimage: "some docker image"
cluster:
config: cluster.yaml
@@ -0,0 +1,11 @@
name: "project1"
cluster:
config: ray-project/cluster.yaml
environment:
requirements: requirements.txt
commands:
- name: default
command: ls
@@ -0,0 +1,7 @@
name: testproject2
environment:
requirements: "requirements.txt"
cluster:
config: cluster.yaml
@@ -0,0 +1,27 @@
# This file is generated by `ray project create`.
name: commands-test
# description: A short description of the project.
repo: https://github.com/ray-project/not-exist
cluster:
config: ray-project/cluster.yaml
environment:
shell:
- echo "Setting up"
commands:
- name: first
command: echo "Starting ray job with {{a}} and {{b}}"
params:
- name: a
help: "This is the first parameter"
choices: ["1", "2"]
- name: b
help: "This is the second parameter"
choices: ["1", "2"]
- name: second
command: echo "Some command"
@@ -0,0 +1,18 @@
# This file is generated by `ray project create`.
# A unique identifier for the head node and workers of this cluster.
cluster_name: git-repo-pass
# The maximum number of workers nodes to launch in addition to the head
# node. This takes precedence over min_workers. min_workers defaults to 0.
max_workers: 1
# Cloud-provider specific configuration.
provider:
type: aws
region: us-west-2
availability_zone: us-west-2a
# How Ray will authenticate with newly launched nodes.
auth:
ssh_user: ubuntu
@@ -0,0 +1,21 @@
# This file is generated by `ray project create`.
name: git-repo-pass
# description: A short description of the project.
repo: https://github.com/ray-project/not-exist
cluster:
config: ray-project/cluster.yaml
environment:
# dockerfile: The dockerfile to be built and ran the commands with.
# dockerimage: The docker image to be used to run the project in, e.g. ubuntu:22.04.
requirements: ray-project/requirements.txt
shell: # Shell commands to be ran for environment setup.
- echo "Setting up the environment"
commands:
- name: default
command: echo "Starting ray job"
@@ -0,0 +1,18 @@
# This file is generated by `ray project create`.
# A unique identifier for the head node and workers of this cluster.
cluster_name: invalid-config-fail
# The maximum number of workers nodes to launch in addition to the head
# node. This takes precedence over min_workers. min_workers defaults to 0.
max_workers: 1
# Cloud-provider specific configuration.
provider:
type: aws
region: us-west-2
availability_zone: us-west-2a
# How Ray will authenticate with newly launched nodes.
auth:
ssh_user: ubuntu
@@ -0,0 +1,24 @@
# This file is generated by `ray project create`.
name: invalid-config-fail
# description: A short description of the project.
# repo: The URL of the repo this project is part of.
cluster:
config: ray-project/cluster.yaml
environment:
# NOTE: The following is invalid because you can't have both dockerfile
# and dockerimage
dockerfile: The dockerfile to be built and ran the commands with.
dockerimage: The docker image to be used to run the project in, e.g. ubuntu:22.04.
requirements: ray-project/requirements.txt
shell: # Shell commands to be ran for environment setup.
- echo "Setting up the environment"
commands:
- name: first-command
command: echo "Starting ray job"
@@ -0,0 +1,18 @@
# This file is generated by `ray project create`.
# A unique identifier for the head node and workers of this cluster.
cluster_name: project-pass
# The maximum number of workers nodes to launch in addition to the head
# node. This takes precedence over min_workers. min_workers defaults to 0.
max_workers: 1
# Cloud-provider specific configuration.
provider:
type: aws
region: us-west-2
availability_zone: us-west-2a
# How Ray will authenticate with newly launched nodes.
auth:
ssh_user: ubuntu
@@ -0,0 +1,21 @@
# This file is generated by `ray project create`.
name: project-pass
# description: A short description of the project.
# repo: The URL of the repo this project is part of.
cluster:
config: ray-project/cluster.yaml
environment:
# dockerfile: The dockerfile to be built and ran the commands with.
# dockerimage: The docker image to be used to run the project in, e.g. ubuntu:22.04.
requirements: ray-project/requirements.txt
shell: # Shell commands to be ran for environment setup.
- echo "Setting up the environment"
commands:
- name: default
command: echo "Starting ray job"
@@ -0,0 +1,18 @@
# This file is generated by `ray project create`.
# A unique identifier for the head node and workers of this cluster.
cluster_name: with-docker-fail
# The maximum number of workers nodes to launch in addition to the head
# node. This takes precedence over min_workers. min_workers defaults to 0.
max_workers: 1
# Cloud-provider specific configuration.
provider:
type: aws
region: us-west-2
availability_zone: us-west-2a
# How Ray will authenticate with newly launched nodes.
auth:
ssh_user: ubuntu
@@ -0,0 +1,20 @@
# This file is generated by `ray project create`.
name: with-docker-fail
# description: A short description of the project.
# repo: The URL of the repo this project is part of.
cluster:
config: ray-project/cluster.yaml
environment:
# dockerfile: The dockerfile to be built and ran the commands with.
dockerimage: ubuntu:18.04
shell: # Shell commands to be ran for environment setup.
- echo "Setting up the environment"
commands:
- name: default
command: echo "Starting ray job"
@@ -0,0 +1,11 @@
name: testproject3
repo: "https://github.com/ray-project/ray"
environment:
shell:
- first command
- second command
- third command
cluster:
config: cluster.yaml