Skip to content

Commit f9b0072

Browse files
committed
[release] Update release documentation for the new directory of helm
1 parent 3744a75 commit f9b0072

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

tools/releasing/create_helm_packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ mkdir -p ${HELM_RELEASE_DIR}
6565
cd ${HELM_RELEASE_DIR}
6666

6767
# create helm package tgz for fluss
68-
helm package ${FLUSS_DIR}/docker/helm
68+
helm package ${FLUSS_DIR}/helm
6969
# create prov file for helm package
7070
helm gpg sign fluss-${RELEASE_VERSION}.tgz
7171

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,17 @@ $ git push origin release-${SHORT_RELEASE_VERSION}
118118
```
119119

120120
Update the version in the Helm Chart in:
121-
- `docker/helm/Chart.yaml`
122-
- `docker/helm/values.yaml`
123-
- `docker/helm/README.md`
121+
- `helm/Chart.yaml`
122+
- `helm/values.yaml`
123+
- `helm/README.md`
124124

125125
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 helm version to x.y.z" docker/helm/Chart.yaml docker/helm/values.yaml docker/helm/README.md
131+
$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml helm/values.yaml helm/README.md
132132
$ git push origin release-${SHORT_RELEASE_VERSION}
133133
```
134134

@@ -142,17 +142,17 @@ $ git checkout release-$SHORT_RELEASE_VERSION
142142
```
143143

144144
Update the version in the Helm Chart in:
145-
- `docker/helm/Chart.yaml`
146-
- `docker/helm/values.yaml`
147-
- `docker/helm/README.md`
145+
- `helm/Chart.yaml`
146+
- `helm/values.yaml`
147+
- `helm/README.md`
148148

149149
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 "[helm] Bump helm 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" helm/Chart.yaml helm/values.yaml helm/README.md
156156
$ git push origin release-${SHORT_RELEASE_VERSION}
157157
```
158158

@@ -225,16 +225,16 @@ $ git push origin main
225225
**(4) Upgrade Helm Charts version on main branch**
226226
227227
Update the version in the Helm Chart in:
228-
- `docker/helm/Chart.yaml`
229-
- `docker/helm/values.yaml`
230-
- `docker/helm/README.md`
228+
- `helm/Chart.yaml`
229+
- `helm/values.yaml`
230+
- `helm/README.md`
231231
232232
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`.
233233
234234
And commit/push the version bump:
235235
236236
```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
237+
$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml helm/values.yaml helm/README.md
238238
$ git push origin main
239239
```
240240

website/community/how-to-release/verifying-a-fluss-release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ gpg: Good signature from "Jark Wu (CODE SIGNING KEY) <[email protected]>"
4444
Next, verify all the checksums:
4545

4646
```bash
47-
for i in *.tgz; do echo $i; sha512sum --check $i.sha512*; done
47+
shasum *.sha512 > checklist.chk; shasum -c checklist.chk
4848
```
4949

5050
If the verification is successful, you will see a message like this:
5151

5252
```
53-
fluss-0.8.0-incubating-src.tgz
54-
fluss-0.8.0-incubating-src.tgz: OK
53+
fluss-0.8.0-incubating-bin.tgz.sha512: OK
54+
fluss-0.8.0-incubating-src.tgz.sha512: OK
5555
```
5656

5757
## Verifying build

0 commit comments

Comments
 (0)