Skip to content

Commit 296fae4

Browse files
authored
release 1.3.0-rc.1 (#53)
Signed-off-by: Andrew Sy Kim <andrewsy@google.com>
1 parent 08c0734 commit 296fae4

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

helm-chart/kuberay-apiserver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.3.0-rc.0
18+
version: 1.3.0-rc.1

helm-chart/kuberay-apiserver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replicaCount: 1
77
name: "kuberay-apiserver"
88
image:
99
repository: quay.io/kuberay/apiserver
10-
tag: v1.3.0-rc.0
10+
tag: v1.3.0-rc.1
1111
pullPolicy: IfNotPresent
1212

1313
## Install Default RBAC roles and bindings
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
description: A Helm chart for Kubernetes
33
name: kuberay-operator
4-
version: 1.3.0-rc.0
4+
version: 1.3.0-rc.1
55
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
66
type: application

helm-chart/kuberay-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: quay.io/kuberay/operator
7-
tag: v1.3.0-rc.0
7+
tag: v1.3.0-rc.1
88
pullPolicy: IfNotPresent
99

1010
nameOverride: "kuberay-operator"

helm-chart/ray-cluster/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
22
description: A Helm chart for Kubernetes
33
name: ray-cluster
4-
version: 1.3.0-rc.0
4+
version: 1.3.0-rc.1
55
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png

helm-chart/ray-cluster/values.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
image:
99
repository: rayproject/ray
10-
tag: 2.9.0
10+
tag: 2.41.0
1111
pullPolicy: IfNotPresent
1212

1313
nameOverride: "kuberay"
@@ -26,7 +26,7 @@ common:
2626
head:
2727
# rayVersion determines the autoscaler's image version.
2828
# It should match the Ray version in the image of the containers.
29-
# rayVersion: 2.9.0
29+
# rayVersion: 2.41.0
3030
# If enableInTreeAutoscaling is true, the autoscaler sidecar will be added to the Ray head pod.
3131
# Ray autoscaler integration is supported only for Ray versions >= 1.11.0
3232
# Ray autoscaler integration is Beta with KubeRay >= 0.3.0 and Ray >= 2.0.0.
@@ -57,8 +57,7 @@ head:
5757
# in the headGroupSpec. See https://github.com/ray-project/kuberay/pull/1128 for more details.
5858
serviceAccountName: ""
5959
restartPolicy: ""
60-
rayStartParams:
61-
dashboard-host: '0.0.0.0'
60+
rayStartParams: {}
6261
# containerEnv specifies environment variables for the Ray container,
6362
# Follows standard K8s container env schema.
6463
containerEnv: []

helm-chart/script/chart-test.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
#!/usr/bin/env bash
2-
if [ -L ${BASH_SOURCE-$0} ]; then
3-
PWD=$(dirname $(readlink "${BASH_SOURCE-$0}"))
2+
if [ -L "${BASH_SOURCE-$0}" ]; then
3+
PWD=$(dirname "$(readlink "${BASH_SOURCE-$0}")")
44
else
5-
PWD=$(dirname ${BASH_SOURCE-$0})
5+
PWD=$(dirname "${BASH_SOURCE-$0}")
66
fi
7-
export CURRENT_PATH=$(cd "${PWD}">/dev/null; pwd)
7+
CURRENT_PATH=$(cd "${PWD}">/dev/null || exit 1; pwd)
8+
export CURRENT_PATH
89
export KUBERAY_HOME=${CURRENT_PATH}/../../
910

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

0 commit comments

Comments
 (0)