You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ur...@apache.org on 2022/06/16 06:05:55 UTC

[pulsar-site] branch main updated: Docs sync done from apache/pulsar(#b8835bb)

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

urfree pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 670633650e8 Docs sync done from apache/pulsar(#b8835bb)
670633650e8 is described below

commit 670633650e878ca53bbf8faf2c8a108cdef2a0d3
Author: Pulsar Site Updater <de...@pulsar.apache.org>
AuthorDate: Thu Jun 16 06:05:49 2022 +0000

    Docs sync done from apache/pulsar(#b8835bb)
---
 site2/website-next/docs/concepts-messaging.md                  | 10 ++++++++++
 site2/website-next/docs/getting-started-helm.md                |  6 ++++++
 .../versioned_docs/version-2.10.0/getting-started-helm.md      |  6 ++++++
 .../versioned_docs/version-2.5.1/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.5.2/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.6.0/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.6.1/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.6.2/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.6.3/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.6.4/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.7.0/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.7.1/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.7.2/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.7.3/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.7.4/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.8.0/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.8.1/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.8.2/getting-started-helm.md       |  3 +++
 .../versioned_docs/version-2.8.3/getting-started-helm.md       |  6 ++++++
 .../versioned_docs/version-2.9.0/getting-started-helm.md       |  6 ++++++
 .../versioned_docs/version-2.9.1/getting-started-helm.md       |  6 ++++++
 .../versioned_docs/version-2.9.2/getting-started-helm.md       |  6 ++++++
 22 files changed, 91 insertions(+)

diff --git a/site2/website-next/docs/concepts-messaging.md b/site2/website-next/docs/concepts-messaging.md
index 4c5cbad6937..af34e087aef 100644
--- a/site2/website-next/docs/concepts-messaging.md
+++ b/site2/website-next/docs/concepts-messaging.md
@@ -975,9 +975,19 @@ delayedDeliveryEnabled=true
 
 # Control the ticking time for the retry of delayed message delivery,
 # affecting the accuracy of the delivery time compared to the scheduled time.
+# Note that this time is used to configure the HashedWheelTimer's tick time for the
+# InMemoryDelayedDeliveryTrackerFactory (the default DelayedDeliverTrackerFactory).
 # Default is 1 second.
 delayedDeliveryTickTimeMillis=1000
 
+# When using the InMemoryDelayedDeliveryTrackerFactory (the default DelayedDeliverTrackerFactory), whether
+# the deliverAt time is strictly followed. When false (default), messages may be sent to consumers before the deliverAt
+# time by as much as the tickTimeMillis. This can reduce the overhead on the broker of maintaining the delayed index
+# for a potentially very short time period. When true, messages will not be sent to consumer until the deliverAt time
+# has passed, and they may be as late as the deliverAt time plus the tickTimeMillis for the topic plus the
+# delayedDeliveryTickTimeMillis.
+isDelayedDeliveryDeliverAtTimeStrict=false
+
 ```
 
 ### Producer 
diff --git a/site2/website-next/docs/getting-started-helm.md b/site2/website-next/docs/getting-started-helm.md
index 17d539718e5..85906fb81ce 100644
--- a/site2/website-next/docs/getting-started-helm.md
+++ b/site2/website-next/docs/getting-started-helm.md
@@ -87,6 +87,12 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 3. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   :::note
+
+   When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
+   :::
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.10.0/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.10.0/getting-started-helm.md
index 41303681af3..4b864a5c2de 100644
--- a/site2/website-next/versioned_docs/version-2.10.0/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.10.0/getting-started-helm.md
@@ -88,6 +88,12 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 3. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   :::note
+
+   When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
+   :::
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.5.1/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.5.1/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.5.1/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.5.1/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.5.2/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.5.2/getting-started-helm.md
index 9b9f237514f..0eaea46496b 100644
--- a/site2/website-next/versioned_docs/version-2.5.2/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.5.2/getting-started-helm.md
@@ -87,6 +87,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 3. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.6.0/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.6.0/getting-started-helm.md
index 09146e9a004..8cf9c4e6946 100644
--- a/site2/website-next/versioned_docs/version-2.6.0/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.6.0/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.6.1/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.6.1/getting-started-helm.md
index cc1b87b0f1f..7bc1ceac11b 100644
--- a/site2/website-next/versioned_docs/version-2.6.1/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.6.1/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.6.2/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.6.2/getting-started-helm.md
index cc1b87b0f1f..7bc1ceac11b 100644
--- a/site2/website-next/versioned_docs/version-2.6.2/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.6.2/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.6.3/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.6.3/getting-started-helm.md
index cc1b87b0f1f..7bc1ceac11b 100644
--- a/site2/website-next/versioned_docs/version-2.6.3/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.6.3/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.6.4/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.6.4/getting-started-helm.md
index 0481ab9694c..e0b5e9a9340 100644
--- a/site2/website-next/versioned_docs/version-2.6.4/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.6.4/getting-started-helm.md
@@ -74,6 +74,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.7.0/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.7.0/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.7.0/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.7.0/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.7.1/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.7.1/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.7.1/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.7.1/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.7.2/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.7.2/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.7.2/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.7.2/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.7.3/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.7.3/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.7.3/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.7.3/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.7.4/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.7.4/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.7.4/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.7.4/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.8.0/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.8.0/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.8.0/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.8.0/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.8.1/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.8.1/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.8.1/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.8.1/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.8.2/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.8.2/getting-started-helm.md
index e45d7728837..b61c70deea6 100644
--- a/site2/website-next/versioned_docs/version-2.8.2/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.8.2/getting-started-helm.md
@@ -88,6 +88,9 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   > **NOTE**
+   > When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.8.3/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.8.3/getting-started-helm.md
index e45d7728837..7919e3005e4 100644
--- a/site2/website-next/versioned_docs/version-2.8.3/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.8.3/getting-started-helm.md
@@ -88,6 +88,12 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 2. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   :::note
+
+   When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
+   :::
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.9.0/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.9.0/getting-started-helm.md
index 5f72a465f70..d11a69d67bd 100644
--- a/site2/website-next/versioned_docs/version-2.9.0/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.9.0/getting-started-helm.md
@@ -88,6 +88,12 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 3. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   :::note
+
+   When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
+   :::
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.9.1/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.9.1/getting-started-helm.md
index 5f72a465f70..d11a69d67bd 100644
--- a/site2/website-next/versioned_docs/version-2.9.1/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.9.1/getting-started-helm.md
@@ -88,6 +88,12 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 3. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   :::note
+
+   When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
+   :::
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \
diff --git a/site2/website-next/versioned_docs/version-2.9.2/getting-started-helm.md b/site2/website-next/versioned_docs/version-2.9.2/getting-started-helm.md
index 5f72a465f70..d11a69d67bd 100644
--- a/site2/website-next/versioned_docs/version-2.9.2/getting-started-helm.md
+++ b/site2/website-next/versioned_docs/version-2.9.2/getting-started-helm.md
@@ -88,6 +88,12 @@ We use [Minikube](https://minikube.sigs.k8s.io/docs/start/) in this quick start
 
 3. Run the script `prepare_helm_release.sh` to create secrets required for installing the Apache Pulsar Helm chart. The username `pulsar` and password `pulsar` are used for logging into the Grafana dashboard and Pulsar Manager.
 
+   :::note
+
+   When running the script, you can use `-n` to specify the Kubernetes namespace where the Pulsar Helm chart is installed, `-k` to define the Pulsar Helm release name, and `-c` to create the Kubernetes namespace. For more information about the script, run `./scripts/pulsar/prepare_helm_release.sh --help`.
+
+   :::
+
    ```bash
    
    ./scripts/pulsar/prepare_helm_release.sh \