Skip to content

Commit

Permalink
[kuberay][autoscaler] Update KubeRay version to v1.1.0 (ray-project#4…
Browse files Browse the repository at this point in the history
…4237)

Signed-off-by: kaihsun <[email protected]>
  • Loading branch information
kevin85421 authored Mar 22, 2024
1 parent b83d4d6 commit 801cb86
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ci/k8s/install-k8s-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

if [[ ! -f /usr/local/bin/kind ]]; then
echo "--- Installing kind"
curl -sfL "https://github.com/kubernetes-sigs/kind/releases/download/v0.11.1/kind-linux-amd64" -o /usr/local/bin/kind
curl -sfL "https://github.com/kubernetes-sigs/kind/releases/download/v0.22.0/kind-linux-amd64" -o /usr/local/bin/kind
chmod +x /usr/local/bin/kind
kind --help
fi
Expand Down
4 changes: 2 additions & 2 deletions python/ray/autoscaler/kuberay/init-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -euo pipefail

# Clone pinned KubeRay commit to temporary directory, copy the CRD definitions
# into the autoscaler folder.
KUBERAY_BRANCH="v1.1.0-rc.0"
OPERATOR_TAG="v1.1.0-rc.0"
KUBERAY_BRANCH="v1.1.0"
OPERATOR_TAG="v1.1.0"

# Requires Kustomize
if ! command -v kustomize &> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion python/ray/tests/chaos/prepare_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo "--- Installing KubeRay operator from official Helm repo."
helm repo add kuberay https://ray-project.github.io/kuberay-helm/
helm install kuberay-operator kuberay/kuberay-operator
kubectl wait pod -l app.kubernetes.io/name=kuberay-operator \
--for=condition=Ready=True --timeout=5m
--for=condition=Ready=True --timeout=2m

echo "--- Installing KubeRay cluster and port forward."

Expand Down
3 changes: 1 addition & 2 deletions python/ray/tests/kuberay/setup/raycluster_test.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
---
apiVersion: ray.io/v1alpha1
apiVersion: ray.io/v1
kind: RayCluster
metadata:
name: raycluster-test
spec:
headGroupSpec:
serviceType: ClusterIP
replicas: 1
rayStartParams: {}
template:
spec:
Expand Down
2 changes: 1 addition & 1 deletion release/k8s_tests/run_gcs_ft_on_k8s.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def generate_cluster_variable():

def check_kuberay_installed():
# Make sure the ray namespace exists
KUBERAY_VERSION = "v1.1.0-rc.0"
KUBERAY_VERSION = "v1.1.0"
uri = (
"github.com/ray-project/kuberay/manifests"
f"/base?ref={KUBERAY_VERSION}&timeout=90s"
Expand Down

0 comments on commit 801cb86

Please sign in to comment.