My team doesn’t use Helm with Kubernetes, so I wasn’t able to install via the recommended path listed here: Deploying on Kubernetes — Ray v2.0.0.dev0
I was able to use the example YAML file here with the ‘ray up’ command to deploy a cluster:
# A unique identifier for the head node and workers of this cluster.
cluster_name: example-cluster
# The maximum number of workers nodes to launch in addition to the head
# node.
max_workers: 2
# The autoscaler will scale up the cluster faster with higher upscaling speed.
# E.g., if the task requires adding more nodes then autoscaler will gradually
# scale up the cluster in chunks of upscaling_speed*currently_running_nodes.
# This number should be > 0.
upscaling_speed: 1.0
# If a node is idle for this many minutes, it will be removed.
idle_timeout_minutes: 5
# Kubernetes resources that need to be configured for the autoscaler to be
# able to manage the Ray cluster. If any of the provided resources don't
# exist, the autoscaler will attempt to create them. If this fails, you may
# not have the required permissions and will have to request them to be
This file has been truncated. show original
However, I’m looking for the actual Kubernetes YAML file that the ray command deployed to my cluster (as that YAML file itself isn’t a valid Kubernetes YAML file). Where can I find that? I’m aiming to incorporate that into our build process.
Thank you