You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by st...@apache.org on 2021/06/03 11:22:46 UTC

[apisix-helm-chart] branch master updated: docs: fix install docs (#91)

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

starsz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git


The following commit(s) were added to refs/heads/master by this push:
     new e73ff71  docs: fix install docs (#91)
e73ff71 is described below

commit e73ff712ef3f9d2b9c8afd58f0d2f760442890e3
Author: Jintao Zhang <ta...@163.com>
AuthorDate: Thu Jun 3 19:22:39 2021 +0800

    docs: fix install docs (#91)
    
    Signed-off-by: Jintao Zhang <zh...@gmail.com>
---
 docs/en/latest/apisix-dashboard.md |  6 ++++--
 docs/en/latest/apisix.md           | 21 +++++++--------------
 2 files changed, 11 insertions(+), 16 deletions(-)

diff --git a/docs/en/latest/apisix-dashboard.md b/docs/en/latest/apisix-dashboard.md
index bd4c011..c947df0 100644
--- a/docs/en/latest/apisix-dashboard.md
+++ b/docs/en/latest/apisix-dashboard.md
@@ -26,7 +26,9 @@ title: Apache APISIX Dashboard Helm Chart
 To install the chart with release name `apisix-dashboard`:
 
 ```shell
-$ helm install apisix-dashboard . -n default
+$ helm repo add apisix https://charts.apiseven.com
+$ helm repo update
+$ helm install apisix-dashboard apisix/apisix-dashboard
 ```
 
 ## Uninstall
@@ -34,5 +36,5 @@ $ helm install apisix-dashboard . -n default
 To uninstall/delete the `apisix-dashboard` release:
 
 ```shell
-$ helm uninstall apisix-dashboard . -n default
+$ helm uninstall apisix-dashboard
 ```
diff --git a/docs/en/latest/apisix.md b/docs/en/latest/apisix.md
index bfe46a2..15e60de 100644
--- a/docs/en/latest/apisix.md
+++ b/docs/en/latest/apisix.md
@@ -21,21 +21,14 @@ title: Apache APISIX Helm Chart
 #
 -->
 
-## Dependencies
-
-Update the dependency chart
-
-```shell
-$ helm repo add bitnami https://charts.bitnami.com/bitnami
-$ helm dependency update .
-```
-
 ## Install
 
 To install the chart with release name `apisix`:
 
 ```shell
-$ helm install apisix . -n default
+$ helm repo add apisix https://charts.apiseven.com
+$ helm repo update
+$ helm install apisix apisix/apisix
 ```
 
 ## Uninstall
@@ -43,7 +36,7 @@ $ helm install apisix . -n default
 To uninstall/delete the `apisix` release:
 
 ```shell
-helm uninstall apisix . -n default
+helm uninstall apisix
 ```
 
 ## FAQ
@@ -56,7 +49,7 @@ Please use the FQDN address or the IP of the etcd.
 
 ```shell
 # if etcd export by kubernetes service need spell fully qualified name
-$ helm install apisix . -n default \
+$ helm install apisix apisix/apisix \
     --set etcd.enabled=false \
     --set etcd.host={http://etcd_node_1:2379\,http://etcd_node_2:2379}
 ```
@@ -66,7 +59,7 @@ $ helm install apisix . -n default \
 We can define `admin.allow.ipList` in CIDR.
 
 ```shell
-$ helm install apisix . -n default \
+$ helm install apisix apisix/apisix \
     --set admin.allow.ipList="10.22.100.12/8" \
     --set admin.allow.ipList="172.0.0.0/24"
 ```
@@ -74,7 +67,7 @@ $ helm install apisix . -n default \
 If you want to allow all IPs for a quick test, just set `admin.allow.ipList=""`
 
 ```shell
-$ helm install apisix . -n default \
+$ helm install apisix apisix/apisix \
     --set admin.allow.ipList=""
 ```