Skip to content

Commit 43f20d6

Browse files
authored
release 1.2.2 (#44)
Signed-off-by: kaihsun <[email protected]>
1 parent de258a2 commit 43f20d6

File tree

9 files changed

+40
-9
lines changed

9 files changed

+40
-9
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.2.1
18+
version: 1.2.2

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.2.1
10+
tag: v1.2.2
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.2.1
4+
version: 1.2.2
55
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
66
type: application

helm-chart/kuberay-operator/crds/ray.io_rayjobs.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11381,8 +11381,6 @@ spec:
1138111381
default: 0
1138211382
format: int32
1138311383
type: integer
11384-
required:
11385-
- entrypoint
1138611384
type: object
1138711385
status:
1138811386
properties:

helm-chart/kuberay-operator/templates/deployment.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,14 @@ spec:
5757
args:
5858
{{- $argList := list -}}
5959
{{- $argList = append $argList (include "kuberay.featureGates" . | trim) -}}
60+
{{- if .Values.batchScheduler -}}
6061
{{- if .Values.batchScheduler.enabled -}}
6162
{{- $argList = append $argList "--enable-batch-scheduler" -}}
6263
{{- end -}}
64+
{{- if .Values.batchScheduler.name -}}
65+
{{- $argList = append $argList (printf "--batch-scheduler=%s" .Values.batchScheduler.name) -}}
66+
{{- end -}}
67+
{{- end -}}
6368
{{- $watchNamespace := "" -}}
6469
{{- if and .Values.singleNamespaceInstall (not .Values.watchNamespace) -}}
6570
{{- $watchNamespace = .Release.Namespace -}}

helm-chart/kuberay-operator/values.yaml

Lines changed: 25 additions & 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.2.1
7+
tag: v1.2.2
88
pullPolicy: IfNotPresent
99

1010
nameOverride: "kuberay-operator"
@@ -55,8 +55,32 @@ readinessProbe:
5555
periodSeconds: 5
5656
failureThreshold: 5
5757

58+
# Enable customized Kubernetes scheduler integration. If enabled, Ray workloads will be scheduled
59+
# by the customized scheduler.
60+
# * "enabled" is the legacy option and will be deprecated soon.
61+
# * "name" is the standard option, expecting a scheduler name, supported values are
62+
# "default", "volcano", and "yunikorn".
63+
#
64+
# Examples:
65+
# 1. Use volcano (deprecated)
66+
# batchScheduler:
67+
# enabled: true
68+
#
69+
# 2. Use volcano
70+
# batchScheduler:
71+
# name: volcano
72+
#
73+
# 3. Use yunikorn
74+
# batchScheduler:
75+
# name: yunikorn
76+
#
5877
batchScheduler:
78+
# Deprecated. This option will be removed in the future.
79+
# Note, for backwards compatibility. When it sets to true, it enables volcano scheduler integration.
5980
enabled: false
81+
# Set the customized scheduler name, supported values are "volcano" or "yunikorn", do not set
82+
# "batchScheduler.enabled=true" at the same time as it will override this option.
83+
name: ""
6084

6185
featureGates:
6286
- name: RayClusterStatusConditions

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.2.1
4+
version: 1.2.2
55
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png

helm-chart/ray-cluster/templates/raycluster-cluster.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,9 @@ spec:
167167
{{- if $values.envFrom }}
168168
envFrom: {{- toYaml $values.envFrom | nindent 14 }}
169169
{{- end }}
170+
{{- if $values.ports }}
170171
ports: {{- toYaml $values.ports | nindent 14}}
172+
{{- end }}
171173
{{- if $values.lifecycle }}
172174
lifecycle:
173175
{{- toYaml $values.lifecycle | nindent 14 }}
@@ -262,7 +264,9 @@ spec:
262264
{{- with .Values.worker.envFrom }}
263265
envFrom: {{- toYaml . | nindent 14}}
264266
{{- end }}
267+
{{- if .Values.worker.ports }}
265268
ports: {{- toYaml .Values.worker.ports | nindent 14}}
269+
{{- end }}
266270
{{- if .Values.worker.lifecycle }}
267271
lifecycle:
268272
{{- toYaml .Values.worker.lifecycle | nindent 14 }}

helm-chart/ray-cluster/values.yaml

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

88
image:
99
repository: rayproject/ray
10-
tag: 2.34.0
10+
tag: 2.9.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.34.0
29+
# rayVersion: 2.9.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.

0 commit comments

Comments
 (0)