28 lines
935 B
YAML
28 lines
935 B
YAML
# An unique identifier for the head node and workers of this cluster.
|
|
cluster_name: minimal
|
|
|
|
# The maximum number of workers nodes to launch in addition to the head
|
|
# node. min_workers default to 0.
|
|
max_workers: 2
|
|
|
|
# Cloud-provider specific configuration.
|
|
provider:
|
|
type: azure
|
|
location: westus2
|
|
resource_group: ray-cluster
|
|
|
|
# How Ray will authenticate with newly launched nodes.
|
|
auth:
|
|
ssh_user: ubuntu
|
|
# SSH keys will be auto-generated with Ray-specific names if not specified
|
|
# Uncomment and specify custom paths if you want to use different existing keys:
|
|
# ssh_private_key: /path/to/your/key.pem
|
|
# ssh_public_key: /path/to/your/key.pub
|
|
|
|
# Files or directories to copy to the head and worker nodes. The format is a
|
|
# dictionary from REMOTE_PATH: LOCAL_PATH, e.g.
|
|
file_mounts: {
|
|
# "/path1/on/remote/machine": "/path1/on/local/machine",
|
|
# "/path2/on/remote/machine": "/path2/on/local/machine",
|
|
}
|