From 8aa12f46fd0a8c7e1f61a0bc0a59165a48f84f36 Mon Sep 17 00:00:00 2001 From: Kai-Hsun Chen Date: Fri, 15 Mar 2024 16:51:06 -0700 Subject: [PATCH] release 1.1.0-rc.1 (#32) --- helm-chart/kuberay-apiserver/Chart.yaml | 2 +- helm-chart/kuberay-apiserver/values.yaml | 2 +- helm-chart/kuberay-operator/Chart.yaml | 2 +- .../kuberay-operator/crds/ray.io_rayservices.yaml | 9 ++++++++- helm-chart/kuberay-operator/values.yaml | 2 +- helm-chart/ray-cluster/Chart.yaml | 2 +- .../ray-cluster/templates/raycluster-cluster.yaml | 2 ++ helm-chart/ray-cluster/values.yaml | 11 ++++++++--- 8 files changed, 23 insertions(+), 9 deletions(-) diff --git a/helm-chart/kuberay-apiserver/Chart.yaml b/helm-chart/kuberay-apiserver/Chart.yaml index 39c863d..144aa6e 100644 --- a/helm-chart/kuberay-apiserver/Chart.yaml +++ b/helm-chart/kuberay-apiserver/Chart.yaml @@ -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.1.0-rc.0 +version: 1.1.0-rc.1 diff --git a/helm-chart/kuberay-apiserver/values.yaml b/helm-chart/kuberay-apiserver/values.yaml index a8aef5a..d2d3eed 100644 --- a/helm-chart/kuberay-apiserver/values.yaml +++ b/helm-chart/kuberay-apiserver/values.yaml @@ -7,7 +7,7 @@ replicaCount: 1 name: "kuberay-apiserver" image: repository: quay.io/kuberay/apiserver - tag: v1.1.0-rc.0 + tag: v1.1.0-rc.1 pullPolicy: IfNotPresent ## Install Default RBAC roles and bindings diff --git a/helm-chart/kuberay-operator/Chart.yaml b/helm-chart/kuberay-operator/Chart.yaml index 027b2c8..78f8531 100644 --- a/helm-chart/kuberay-operator/Chart.yaml +++ b/helm-chart/kuberay-operator/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 description: A Helm chart for Kubernetes name: kuberay-operator -version: 1.1.0-rc.0 +version: 1.1.0-rc.1 icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png type: application diff --git a/helm-chart/kuberay-operator/crds/ray.io_rayservices.yaml b/helm-chart/kuberay-operator/crds/ray.io_rayservices.yaml index a43c52b..b3f8b90 100644 --- a/helm-chart/kuberay-operator/crds/ray.io_rayservices.yaml +++ b/helm-chart/kuberay-operator/crds/ray.io_rayservices.yaml @@ -16,7 +16,14 @@ spec: singular: rayservice scope: Namespaced versions: - - name: v1 + - additionalPrinterColumns: + - jsonPath: .status.serviceStatus + name: service status + type: string + - jsonPath: .status.numServeEndpoints + name: num serve endpoints + type: string + name: v1 schema: openAPIV3Schema: properties: diff --git a/helm-chart/kuberay-operator/values.yaml b/helm-chart/kuberay-operator/values.yaml index c326d7d..92cd225 100644 --- a/helm-chart/kuberay-operator/values.yaml +++ b/helm-chart/kuberay-operator/values.yaml @@ -4,7 +4,7 @@ image: repository: quay.io/kuberay/operator - tag: v1.1.0-rc.0 + tag: v1.1.0-rc.1 pullPolicy: IfNotPresent nameOverride: "kuberay-operator" diff --git a/helm-chart/ray-cluster/Chart.yaml b/helm-chart/ray-cluster/Chart.yaml index 844fa01..e59047b 100644 --- a/helm-chart/ray-cluster/Chart.yaml +++ b/helm-chart/ray-cluster/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 description: A Helm chart for Kubernetes name: ray-cluster -version: 1.1.0-rc.0 +version: 1.1.0-rc.1 icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png diff --git a/helm-chart/ray-cluster/templates/raycluster-cluster.yaml b/helm-chart/ray-cluster/templates/raycluster-cluster.yaml index 9a24459..ee1781c 100644 --- a/helm-chart/ray-cluster/templates/raycluster-cluster.yaml +++ b/helm-chart/ray-cluster/templates/raycluster-cluster.yaml @@ -121,6 +121,7 @@ spec: replicas: {{ $values.replicas }} minReplicas: {{ $values.minReplicas | default 0 }} maxReplicas: {{ $values.maxReplicas | default 2147483647 }} + numOfHosts: {{ $values.numOfHosts | default 1 }} groupName: {{ $groupName }} template: spec: @@ -205,6 +206,7 @@ spec: replicas: {{ .Values.worker.replicas }} minReplicas: {{ .Values.worker.minReplicas | default 0 }} maxReplicas: {{ .Values.worker.maxReplicas | default 2147483647 }} + numOfHosts: {{ .Values.worker.numOfHosts | default 1 }} groupName: {{ .Values.worker.groupName }} template: spec: diff --git a/helm-chart/ray-cluster/values.yaml b/helm-chart/ray-cluster/values.yaml index 0788f37..7c23e4c 100644 --- a/helm-chart/ray-cluster/values.yaml +++ b/helm-chart/ray-cluster/values.yaml @@ -106,6 +106,12 @@ head: # container command for head Pod. command: [] args: [] + # Optional, for the user to provide any additional fields to the service. + # See https://pkg.go.dev/k8s.io/Kubernetes/pkg/api/v1#Service + headService: {} + # metadata: + # annotations: + # prometheus.io/scrape: "true" worker: @@ -114,6 +120,8 @@ worker: # disabled: true groupName: workergroup replicas: 1 + minReplicas: 1 + maxReplicas: 3 labels: {} serviceAccountName: "" rayStartParams: {} @@ -228,6 +236,3 @@ additionalWorkerGroups: service: # This is optional, and the default is ClusterIP. type: ClusterIP - # Optional, for the user to provide any additional fields to the service. - # See https://pkg.go.dev/k8s.io/Kubernetes/pkg/api/v1#Service - headService: {}