Skip to content

Commit

Permalink
Switch to 0.4.0 and eliminate Chart app versions. (#810)
Browse files Browse the repository at this point in the history
Why are these changes needed?
This PR updates version tags in the release branch to 0.4.0.
Once this PR is committed to the release branch, final 0.4.0 artifacts will be built from the branch.

This PR should only be merged once we're ready to go through with the final release.

Removing app version
I've made a decision here to remove appVersions for the Helm charts.
appVersion is optional and I don't believe we need an extra version string floating around.
I'm open to keeping appVersion if anyone thinks it's needed.

Signed-off-by: Dmitri Gekhtman <dmitri.m.gekhtman@gmail.com>
  • Loading branch information
DmitriGekhtman committed Dec 8, 2022
1 parent 86b0af2 commit 7f83353
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 16 deletions.
8 changes: 1 addition & 7 deletions helm-chart/kuberay-apiserver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +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: 0.4.0-rc.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.4.0-rc.0
version: 0.4.0
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: kuberay/apiserver
tag: v0.4.0-rc.0
tag: v0.4.0
pullPolicy: IfNotPresent

## Install Default RBAC roles and bindings
Expand Down
3 changes: 1 addition & 2 deletions helm-chart/kuberay-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
apiVersion: v2
appVersion: 0.4.0-rc.0
description: A Helm chart for Kubernetes
name: kuberay-operator
version: 0.4.0-rc.0
version: 0.4.0
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: kuberay/operator
tag: v0.4.0-rc.0
tag: v0.4.0
pullPolicy: IfNotPresent

nameOverride: "kuberay-operator"
Expand Down
3 changes: 1 addition & 2 deletions helm-chart/ray-cluster/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apiVersion: v1
appVersion: 0.4.0-rc.0
description: A Helm chart for Kubernetes
name: ray-cluster
version: 0.4.0-rc.0
version: 0.4.0
icon: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png
4 changes: 2 additions & 2 deletions manifests/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ resources:
images:
- name: kuberay/apiserver
newName: kuberay/apiserver
newTag: v0.4.0-rc.0
newTag: v0.4.0
- name: kuberay/operator
newName: kuberay/operator
newTag: v0.4.0-rc.0
newTag: v0.4.0

2 changes: 1 addition & 1 deletion ray-operator/config/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ bases:
images:
- name: kuberay/operator
newName: kuberay/operator
newTag: v0.4.0-rc.0
newTag: v0.4.0

0 comments on commit 7f83353

Please sign in to comment.