This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch cherry-pick-b76466e8-to-branch-1.1 in repository https://gitbox.apache.org/repos/asf/gravitino.git
commit dbe0701074aeb43e3d6dee907f92ae532c425b41 Author: Jerry Shao <[email protected]> AuthorDate: Sat Feb 14 23:00:47 2026 +0800 [MINOR] fix(doc): Fix the wording issues for chart doc (#10004) ### What changes were proposed in this pull request? Fix the wording issue to clarify that helm chart itself has not released to the public helm registry. ### Why are the changes needed? To clarify the doc. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? N/A Co-authored-by: Qi Yu <[email protected]> --- docs/chart.md | 4 ++-- docs/iceberg-rest-catalog-chart.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/chart.md b/docs/chart.md index e198c2d862..b74bbd3c5b 100644 --- a/docs/chart.md +++ b/docs/chart.md @@ -16,7 +16,7 @@ This Helm chart deploys Apache Gravitino on Kubernetes with customizable configu ## Update Chart Dependency -The Gravitino Helm chart has not yet been officially released. +The Gravitino Helm chart has not yet been released to the helm registry. To proceed, please clone the repository, navigate to the chart directory `/path/to/gravitino/dev/charts`, and execute the Helm dependency update command. ```console @@ -115,4 +115,4 @@ Ensure the target MySQL database (gravitino) exists before deployment._ ```console helm uninstall [RELEASE_NAME] -n [NAMESPACE] -``` \ No newline at end of file +``` diff --git a/docs/iceberg-rest-catalog-chart.md b/docs/iceberg-rest-catalog-chart.md index b3e52d0d64..9b2534aaab 100644 --- a/docs/iceberg-rest-catalog-chart.md +++ b/docs/iceberg-rest-catalog-chart.md @@ -1,7 +1,7 @@ --- title: "Install Iceberg Rest catalog server on Kubernetes" slug: /iceberg-rest-catalog-chart -keyword: +keyword: - Iceberg REST Helm Chart license: "This software is licensed under the Apache License version 2." --- @@ -17,7 +17,7 @@ This Helm chart deploys Apache Gravitino Iceberg REST Catalog Server on Kubernet ## Update Chart Dependency -The Gravitino Iceberg REST Catalog Server Helm chart has not yet been officially released. +The Gravitino Iceberg REST Catalog Server Helm chart has not yet been released to the helm registry. To proceed, please clone the repository, navigate to the chart directory [charts](../dev/charts), and execute the Helm dependency update command. ```console @@ -59,7 +59,7 @@ helm upgrade --install gravitino ./gravitino-iceberg-rest-server \ To customize the deployment, use the --set flag to override specific values: ```console -helm upgrade --install gravitino ./gravitino-iceberg-rest-server +helm upgrade --install gravitino ./gravitino-iceberg-rest-server -n gravitino \ --create-namespace \ --set key1=val1,key2=val2,... @@ -67,7 +67,7 @@ helm upgrade --install gravitino ./gravitino-iceberg-rest-server Alternatively, you can provide a custom values.yaml file: ```console -helm upgrade --install gravitino ./gravitino-iceberg-rest-server +helm upgrade --install gravitino ./gravitino-iceberg-rest-server -n gravitino \ --create-namespace \ -f /path/to/values.yaml @@ -79,4 +79,4 @@ The path '/path/to/values.yaml' refers to the actual path to the values.yaml fil ```console helm uninstall [RELEASE_NAME] -n [NAMESPACE] -``` \ No newline at end of file +```
