You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/community/how-to-release/creating-a-fluss-release.mdx
+21-4Lines changed: 21 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,13 +122,13 @@ Update the version in the Helm Chart in:
122
122
-`docker/helm/values.yaml`
123
123
-`docker/helm/README.md`
124
124
125
-
For example, if you are releaseing a major version `0.8.0`, you should replace all the snapshot version `0.8-SNAPSHOT` to the release version `0.8.0`.
125
+
For example, if you are releasing a major version `0.8.0-incubating`, you should replace all the previous version `0.7.0-incubating` to the release version `0.8.0-incubating`.
126
126
127
127
128
128
And commit/push the version bump:
129
129
130
130
```bash
131
-
$ git commit -m "[helm] Bump version to ${RELEASE_VERSION}" docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
131
+
$ git commit -m "[helm] Bump helm version to x.y.z" docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
@@ -146,13 +146,13 @@ Update the version in the Helm Chart in:
146
146
-`docker/helm/values.yaml`
147
147
-`docker/helm/README.md`
148
148
149
-
For example, if you are releaseing a bugfix version `0.8.1`, you should replace all the previous version `0.8.0` to the new version `0.8.1`.
149
+
For example, if you are releasing a bugfix version `0.8.1-incubating`, you should replace all the previous version `0.8.0-incubating` to the new version `0.8.1-incubating`.
150
150
151
151
152
152
And commit/push the version bump:
153
153
154
154
```bash
155
-
$ git commit -m "Bump version to x.y.z" docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
155
+
$ git commit -m "[helm] Bump helm version to x.y.z" docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
@@ -221,6 +221,23 @@ Commit the documentation changes, and push to the official repository.
221
221
$ git commit -m "[docs] Add version item for $RELEASE_VERSION in fluss-versions.json
222
222
$ git push origin main
223
223
```
224
+
225
+
**(4) Upgrade Helm Charts version on main branch**
226
+
227
+
Update the version in the Helm Chart in:
228
+
- `docker/helm/Chart.yaml`
229
+
- `docker/helm/values.yaml`
230
+
- `docker/helm/README.md`
231
+
232
+
For example, if the next major version is `0.9.0-incubating`, you should replace all the previous version `0.8.0-incubating` to the next release version `0.9.0-incubating`.
233
+
234
+
And commit/push the version bump:
235
+
236
+
```bash
237
+
$ git commit -m "[helm] Bump helm version to x.y.z" docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
0 commit comments