[autoscaler][kubernetes][minor] latest images everywhere (#16205)

* latest images everywhere

* add back some documentation on the images

* Doc update
This commit is contained in:
Dmitri Gekhtman 2021-06-04 19:01:39 -04:00 committed by GitHub
parent 527d51b83a
commit a60ee3a8b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 8 deletions

View file

@ -71,9 +71,10 @@ namespacedOperator: false
# operatorNamepsace - If using a cluster-scoped operator (namespacedOperator: false), set the namespace
# in which to launch the operator.
operatorNamespace: default
# operatorImage - For best stability, it's currently recommended to use the nightly ray image in the operator Deployment.
# For an official ray release version, use `rayproject/ray:1.x.y`.
# For the latest ray release version, `rayproject/ray:latest`.
# You could also use a specific master commit, e.g. `rayproject/ray:38b64e`.
# The nightly operator image is compatible with all Ray versions since 1.2.0
operatorImage: rayproject/ray:nightly
# operatorImage - The image used in the operator deployment.
operatorImage: rayproject/ray:latest
# `rayproject/ray:latest` contains the latest official release version of Ray.
# `rayproject/ray:nightly` runs the current master version of Ray and carries some stability fixes.
# For a particular official release version of Ray, use `rayproject/ray:1.x.y`.
# For a specific master commit, use the first 6 characters of the commit SHA, e.g. `rayproject/ray:050a07`.
# The operator and Ray cluster can use different Ray versions, provided both versions are >= 1.2.0

View file

@ -47,8 +47,8 @@ Installing the Ray Operator with Helm
-------------------------------------
Ray provides a `Helm`_ chart to simplify deployment of the Ray Operator and Ray clusters.
Currently, the `Ray Helm chart`_ is available on the the master branch of the Ray GitHub repo.
The chart will be published to a public Helm repo as part of each Ray release, starting with the upcoming Ray 1.4.0.
The `Ray Helm chart`_ is available as part of the Ray GitHub repository.
The chart will be published to a public Helm repository as part of a future Ray release.
Preparation
~~~~~~~~~~~