This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 3310cc9132 [Minor] Update chart doc and chart default image tag (#7124)
3310cc9132 is described below
commit 3310cc9132444fcce01deea1ba4157e1e4da3637
Author: Danhua Wang <[email protected]>
AuthorDate: Fri May 9 10:14:05 2025 +0800
[Minor] Update chart doc and chart default image tag (#7124)
### What changes were proposed in this pull request?
1. Update chart doc
2. Update chart default image tag
### Why are the changes needed?
Show how to set image tag to user.
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
CI
---
dev/charts/gravitino/Chart.yaml | 2 +-
dev/charts/gravitino/values.yaml | 2 +-
docs/chart.md | 13 ++++---------
3 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/dev/charts/gravitino/Chart.yaml b/dev/charts/gravitino/Chart.yaml
index 79b2893ef6..e5ca8b2375 100644
--- a/dev/charts/gravitino/Chart.yaml
+++ b/dev/charts/gravitino/Chart.yaml
@@ -35,4 +35,4 @@ maintainers:
name: gravitino
sources:
- https://github.com/apache/gravitino
-version: 0.10.0
+version: 0.10.1
diff --git a/dev/charts/gravitino/values.yaml b/dev/charts/gravitino/values.yaml
index daa5bc08a9..c54ddef5bb 100644
--- a/dev/charts/gravitino/values.yaml
+++ b/dev/charts/gravitino/values.yaml
@@ -19,7 +19,7 @@
image:
repository: apache/gravitino
- tag: 0.9.0-incubating-SNAPSHOT
+ tag: 0.10.0-incubating-SNAPSHOT
pullPolicy: IfNotPresent
## Optionally specify an array of pullSecrets (secrets must be manually
created in the namespace)
## ref:
https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
diff --git a/docs/chart.md b/docs/chart.md
index 863fd59f00..d5443c7892 100644
--- a/docs/chart.md
+++ b/docs/chart.md
@@ -16,18 +16,13 @@ This Helm chart deploys Apache Gravitino on Kubernetes with
customizable configu
## Update Chart Dependency
-If the chart has not been released yet, navigate to the chart directory and
update its dependencies:
+The Gravitino Helm chart has not yet been officially released.
+To proceed, please clone the repository, navigate to the chart directory
`/path/to/gravitino/dev/charts`, and execute the Helm dependency update command.
```console
helm dependency update [CHART]
```
-## Package Helm Chart
-
-```console
-helm package [CHART_PATH]
-```
-
## View Chart values
You can customize values.yaml parameters to override chart default settings.
Additionally, Gravitino configurations in gravitino.conf can be modified
through Helm values.yaml.
@@ -46,10 +41,10 @@ helm install [RELEASE_NAME] [CHART] [flags]
### Deploy with Default Configuration
-Run the following command to deploy Gravitino using the default settings:
+Run the following command to deploy Gravitino using the default settings,
specify container image versions using --set image.tag=x.y.z-incubating
(replace x, y, z with the expected version numbers):
```console
-helm upgrade --install gravitino ./gravitino -n gravitino --create-namespace
+helm upgrade --install gravitino ./gravitino -n gravitino --create-namespace
--set image.tag=<x.y.z-incubating>
```
### Deploy with Custom Configuration