File tree Expand file tree Collapse file tree 7 files changed +15
-15
lines changed
Expand file tree Collapse file tree 7 files changed +15
-15
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ replicaCount: 1
77name : " kuberay-apiserver"
88image :
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
Original file line number Diff line number Diff line change 11apiVersion : v2
22description : A Helm chart for Kubernetes
33name : kuberay-operator
4- version : 1.3.0-rc.0
4+ version : 1.3.0-rc.1
55icon : https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
66type : application
Original file line number Diff line number Diff line change 44
55image :
66 repository : quay.io/kuberay/operator
7- tag : v1.3.0-rc.0
7+ tag : v1.3.0-rc.1
88 pullPolicy : IfNotPresent
99
1010nameOverride : " kuberay-operator"
Original file line number Diff line number Diff line change 11apiVersion : v1
22description : A Helm chart for Kubernetes
33name : ray-cluster
4- version : 1.3.0-rc.0
4+ version : 1.3.0-rc.1
55icon : https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
Original file line number Diff line number Diff line change 77
88image :
99 repository : rayproject/ray
10- tag : 2.9 .0
10+ tag : 2.41 .0
1111 pullPolicy : IfNotPresent
1212
1313nameOverride : " kuberay"
@@ -26,7 +26,7 @@ common:
2626head :
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.
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 : []
Original file line number Diff line number Diff line change 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 } " ) " )
44else
5- PWD=$( dirname ${BASH_SOURCE-$0 } )
5+ PWD=$( dirname " ${BASH_SOURCE-$0 } " )
66fi
7- export CURRENT_PATH=$( cd " ${PWD} " > /dev/null; pwd)
7+ CURRENT_PATH=$( cd " ${PWD} " > /dev/null || exit 1; pwd)
8+ export CURRENT_PATH
89export KUBERAY_HOME=${CURRENT_PATH} /../../
910
10- cd $KUBERAY_HOME
11+ cd " $KUBERAY_HOME " || exit 1
1112if [ " $# " == 1 ] && [ " $1 " == " local" ]; then
1213 ct lint --all --chart-dirs helm-chart/ --validate-maintainers=false
1314else
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
1718fi
You can’t perform that action at this time.
0 commit comments