Skip to content

Commit

Permalink
release 1.3.0-rc.1 (#53)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Sy Kim <[email protected]>
  • Loading branch information
andrewsykim authored Feb 10, 2025
1 parent 08c0734 commit 296fae4
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion helm-chart/kuberay-apiserver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.3.0-rc.0
version: 1.3.0-rc.1
2 changes: 1 addition & 1 deletion helm-chart/kuberay-apiserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
name: "kuberay-apiserver"
image:
repository: quay.io/kuberay/apiserver
tag: v1.3.0-rc.0
tag: v1.3.0-rc.1
pullPolicy: IfNotPresent

## Install Default RBAC roles and bindings
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/kuberay-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
description: A Helm chart for Kubernetes
name: kuberay-operator
version: 1.3.0-rc.0
version: 1.3.0-rc.1
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
type: application
2 changes: 1 addition & 1 deletion helm-chart/kuberay-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

image:
repository: quay.io/kuberay/operator
tag: v1.3.0-rc.0
tag: v1.3.0-rc.1
pullPolicy: IfNotPresent

nameOverride: "kuberay-operator"
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/ray-cluster/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
description: A Helm chart for Kubernetes
name: ray-cluster
version: 1.3.0-rc.0
version: 1.3.0-rc.1
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
7 changes: 3 additions & 4 deletions helm-chart/ray-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

image:
repository: rayproject/ray
tag: 2.9.0
tag: 2.41.0
pullPolicy: IfNotPresent

nameOverride: "kuberay"
Expand All @@ -26,7 +26,7 @@ common:
head:
# rayVersion determines the autoscaler's image version.
# It should match the Ray version in the image of the containers.
# rayVersion: 2.9.0
# rayVersion: 2.41.0
# If enableInTreeAutoscaling is true, the autoscaler sidecar will be added to the Ray head pod.
# Ray autoscaler integration is supported only for Ray versions >= 1.11.0
# Ray autoscaler integration is Beta with KubeRay >= 0.3.0 and Ray >= 2.0.0.
Expand Down Expand Up @@ -57,8 +57,7 @@ head:
# in the headGroupSpec. See https://github.com/ray-project/kuberay/pull/1128 for more details.
serviceAccountName: ""
restartPolicy: ""
rayStartParams:
dashboard-host: '0.0.0.0'
rayStartParams: {}
# containerEnv specifies environment variables for the Ray container,
# Follows standard K8s container env schema.
containerEnv: []
Expand Down
13 changes: 7 additions & 6 deletions helm-chart/script/chart-test.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
#!/usr/bin/env bash
if [ -L ${BASH_SOURCE-$0} ]; then
PWD=$(dirname $(readlink "${BASH_SOURCE-$0}"))
if [ -L "${BASH_SOURCE-$0}" ]; then
PWD=$(dirname "$(readlink "${BASH_SOURCE-$0}")")
else
PWD=$(dirname ${BASH_SOURCE-$0})
PWD=$(dirname "${BASH_SOURCE-$0}")
fi
export CURRENT_PATH=$(cd "${PWD}">/dev/null; pwd)
CURRENT_PATH=$(cd "${PWD}">/dev/null || exit 1; pwd)
export CURRENT_PATH
export KUBERAY_HOME=${CURRENT_PATH}/../../

cd $KUBERAY_HOME
cd "$KUBERAY_HOME" || exit 1
if [ "$#" == 1 ] && [ "$1" == "local" ]; then
ct lint --all --chart-dirs helm-chart/ --validate-maintainers=false
else
docker run -it --network host --workdir=/data --volume ~/.kube/config:/root/.kube/config:ro \
--volume $(pwd):/data quay.io/helmpack/chart-testing:v3.5.0 \
--volume "$(pwd)":/data quay.io/helmpack/chart-testing:v3.5.0 \
ct lint --all --chart-dirs helm-chart/ --validate-maintainers=false
fi

0 comments on commit 296fae4

Please sign in to comment.