This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git


The following commit(s) were added to refs/heads/main by this push:
     new f9b007259 [release] Update release documentation for the new directory 
of helm
f9b007259 is described below

commit f9b00725969b7b902edfb09d670484c10334b447
Author: Jark Wu <[email protected]>
AuthorDate: Sun Nov 2 16:11:04 2025 +0800

    [release] Update release documentation for the new directory of helm
---
 tools/releasing/create_helm_packages.sh            |  2 +-
 .../how-to-release/creating-a-fluss-release.mdx    | 24 +++++++++++-----------
 .../how-to-release/verifying-a-fluss-release.md    |  6 +++---
 3 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/tools/releasing/create_helm_packages.sh 
b/tools/releasing/create_helm_packages.sh
index 44c52f6cd..d8432a180 100755
--- a/tools/releasing/create_helm_packages.sh
+++ b/tools/releasing/create_helm_packages.sh
@@ -65,7 +65,7 @@ mkdir -p ${HELM_RELEASE_DIR}
 cd ${HELM_RELEASE_DIR}
 
 # create helm package tgz for fluss
-helm package ${FLUSS_DIR}/docker/helm
+helm package ${FLUSS_DIR}/helm
 # create prov file for helm package
 helm gpg sign fluss-${RELEASE_VERSION}.tgz
 
diff --git a/website/community/how-to-release/creating-a-fluss-release.mdx 
b/website/community/how-to-release/creating-a-fluss-release.mdx
index f5b3b9b5e..165041e52 100644
--- a/website/community/how-to-release/creating-a-fluss-release.mdx
+++ b/website/community/how-to-release/creating-a-fluss-release.mdx
@@ -118,9 +118,9 @@ $ git push origin release-${SHORT_RELEASE_VERSION}
 ```
 
 Update the version in the Helm Chart in:
-- `docker/helm/Chart.yaml`
-- `docker/helm/values.yaml`
-- `docker/helm/README.md`
+- `helm/Chart.yaml`
+- `helm/values.yaml`
+- `helm/README.md`
 
 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`.
 
@@ -128,7 +128,7 @@ For example, if you are releasing a major version 
`0.8.0-incubating`, you should
 And commit/push the version bump:
 
 ```bash
-$ git commit -m "[helm] Bump helm version to x.y.z" docker/helm/Chart.yaml 
docker/helm/values.yaml docker/helm/README.md
+$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml 
helm/values.yaml helm/README.md
 $ git push origin release-${SHORT_RELEASE_VERSION}
 ```
 
@@ -142,9 +142,9 @@ $ git checkout release-$SHORT_RELEASE_VERSION
 ```
 
 Update the version in the Helm Chart in:
-- `docker/helm/Chart.yaml`
-- `docker/helm/values.yaml`
-- `docker/helm/README.md`
+- `helm/Chart.yaml`
+- `helm/values.yaml`
+- `helm/README.md`
 
 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`.
 
@@ -152,7 +152,7 @@ For example, if you are releasing a bugfix version 
`0.8.1-incubating`, you shoul
 And commit/push the version bump:
 
 ```bash
-$ git commit -m "[helm] Bump helm version to x.y.z" docker/helm/Chart.yaml 
docker/helm/values.yaml docker/helm/README.md
+$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml 
helm/values.yaml helm/README.md
 $ git push origin release-${SHORT_RELEASE_VERSION}
 ```
 
@@ -225,16 +225,16 @@ $ git push origin main
 **(4) Upgrade Helm Charts version on main branch**
 
 Update the version in the Helm Chart in:
-- `docker/helm/Chart.yaml`
-- `docker/helm/values.yaml`
-- `docker/helm/README.md`
+- `helm/Chart.yaml`
+- `helm/values.yaml`
+- `helm/README.md`
 
 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`.
 
 And commit/push the version bump:
 
 ```bash
-$ git commit -m "[helm] Bump helm version to x.y.z" docker/helm/Chart.yaml 
docker/helm/values.yaml docker/helm/README.md
+$ git commit -m "[helm] Bump helm version to x.y.z" helm/Chart.yaml 
helm/values.yaml helm/README.md
 $ git push origin main
 ```
 
diff --git a/website/community/how-to-release/verifying-a-fluss-release.md 
b/website/community/how-to-release/verifying-a-fluss-release.md
index ec12ed191..b75d4c728 100644
--- a/website/community/how-to-release/verifying-a-fluss-release.md
+++ b/website/community/how-to-release/verifying-a-fluss-release.md
@@ -44,14 +44,14 @@ gpg: Good signature from "Jark Wu (CODE SIGNING KEY) 
<[email protected]>"
 Next, verify all the checksums:
 
 ```bash
-for i in *.tgz; do echo $i; sha512sum --check  $i.sha512*; done
+shasum *.sha512 > checklist.chk; shasum -c checklist.chk
 ```
 
 If the verification is successful, you will see a message like this:
 
 ```
-fluss-0.8.0-incubating-src.tgz
-fluss-0.8.0-incubating-src.tgz: OK
+fluss-0.8.0-incubating-bin.tgz.sha512: OK
+fluss-0.8.0-incubating-src.tgz.sha512: OK
 ```
 
 ## Verifying build

Reply via email to