Skip to content

Commit 7026f64

Browse files
committed
[docs] Update release documentation for updating helm chart versions
1 parent e0d85a2 commit 7026f64

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

website/community/how-to-release/creating-a-fluss-release.mdx

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,13 @@ Update the version in the Helm Chart in:
122122
- `docker/helm/values.yaml`
123123
- `docker/helm/README.md`
124124

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`.
126126

127127

128128
And commit/push the version bump:
129129

130130
```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
132132
$ git push origin release-${SHORT_RELEASE_VERSION}
133133
```
134134

@@ -146,13 +146,13 @@ Update the version in the Helm Chart in:
146146
- `docker/helm/values.yaml`
147147
- `docker/helm/README.md`
148148

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`.
150150

151151

152152
And commit/push the version bump:
153153

154154
```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
156156
$ git push origin release-${SHORT_RELEASE_VERSION}
157157
```
158158

@@ -221,6 +221,23 @@ Commit the documentation changes, and push to the official repository.
221221
$ git commit -m "[docs] Add version item for $RELEASE_VERSION in fluss-versions.json
222222
$ git push origin main
223223
```
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
238+
$ git push origin main
239+
```
240+
224241
</TabItem>
225242
226243
<TabItem value="bugfix" label="Bugfix release">

0 commit comments

Comments
 (0)