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

liuxiran 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 3dfb9b9  feat: add helm chart FAQ entry on the navbar (#118)
3dfb9b9 is described below

commit 3dfb9b98128ada93f439179223a7c91d87f813e1
Author: Kishani Kandasamy <[email protected]>
AuthorDate: Tue Aug 17 06:52:35 2021 +0530

    feat: add helm chart FAQ entry on the navbar (#118)
    
    Co-authored-by: Alex Zhang <[email protected]>
---
 docs/en/latest/{apisix.md => FAQ.md} | 36 ++++--------------------------------
 docs/en/latest/apisix.md             | 32 --------------------------------
 docs/en/latest/config.json           |  4 ++++
 3 files changed, 8 insertions(+), 64 deletions(-)

diff --git a/docs/en/latest/apisix.md b/docs/en/latest/FAQ.md
similarity index 57%
copy from docs/en/latest/apisix.md
copy to docs/en/latest/FAQ.md
index 15e60de..fac7a26 100644
--- a/docs/en/latest/apisix.md
+++ b/docs/en/latest/FAQ.md
@@ -1,5 +1,5 @@
 ---
-title: Apache APISIX Helm Chart
+title: FAQ
 ---
 
 <!--
@@ -21,31 +21,11 @@ title: Apache APISIX Helm Chart
 #
 -->
 
-## Install
+### 1. How to install APISIX only?
 
-To install the chart with release name `apisix`:
+The Charts will install ETCD `3.4.14` by default. If you want to install 
Apache APISIX only, please set `etcd.enabled=false` and set 
`etcd.host={http://your_etcd_address:2379}`.
 
-```shell
-$ helm repo add apisix https://charts.apiseven.com
-$ helm repo update
-$ helm install apisix apisix/apisix
-```
-
-## Uninstall
-
-To uninstall/delete the `apisix` release:
-
-```shell
-helm uninstall apisix
-```
-
-## FAQ
-
-1. How to install APISIX only?
-
-The Charts will install etcd 3.4.14 by default. If you want to install Apache 
APISIX only, please set `etcd.enabled=false` and set 
`etcd.host={http://your_etcd_address:2379}`.
-
-Please use the FQDN address or the IP of the etcd.
+Please use the FQDN or the IP address of the ETCD cluster.
 
 ```shell
 # if etcd export by kubernetes service need spell fully qualified name
@@ -70,11 +50,3 @@ If you want to allow all IPs for a quick test, just set 
`admin.allow.ipList=""`
 $ helm install apisix apisix/apisix \
     --set admin.allow.ipList=""
 ```
-
-## Seeking help
-
-- Mailing List: Mail to [email protected], follow the reply to 
subscribe the mailing list.
-- QQ Group - 578997126, 552030619
-- [Slack Workspace](http://s.apache.org/slack-invite) - join `#apisix` on our 
Slack to meet the team and ask questions
-- ![Twitter 
Follow](https://img.shields.io/twitter/follow/ApacheAPISIX?style=social) - 
follow and interact with us using hashtag `#ApacheAPISIX`
-- [bilibili video](https://space.bilibili.com/551921247)
diff --git a/docs/en/latest/apisix.md b/docs/en/latest/apisix.md
index 15e60de..984ef2d 100644
--- a/docs/en/latest/apisix.md
+++ b/docs/en/latest/apisix.md
@@ -39,38 +39,6 @@ To uninstall/delete the `apisix` release:
 helm uninstall apisix
 ```
 
-## FAQ
-
-1. How to install APISIX only?
-
-The Charts will install etcd 3.4.14 by default. If you want to install Apache 
APISIX only, please set `etcd.enabled=false` and set 
`etcd.host={http://your_etcd_address:2379}`.
-
-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 apisix/apisix \
-    --set etcd.enabled=false \
-    --set etcd.host={http://etcd_node_1:2379\,http://etcd_node_2:2379}
-```
-
-2. Why get 403 when I access Apache APISIX admin api?
-
-We can define `admin.allow.ipList` in CIDR.
-
-```shell
-$ helm install apisix apisix/apisix \
-    --set admin.allow.ipList="10.22.100.12/8" \
-    --set admin.allow.ipList="172.0.0.0/24"
-```
-
-If you want to allow all IPs for a quick test, just set `admin.allow.ipList=""`
-
-```shell
-$ helm install apisix apisix/apisix \
-    --set admin.allow.ipList=""
-```
-
 ## Seeking help
 
 - Mailing List: Mail to [email protected], follow the reply to 
subscribe the mailing list.
diff --git a/docs/en/latest/config.json b/docs/en/latest/config.json
index b05c2fc..c369d9f 100644
--- a/docs/en/latest/config.json
+++ b/docs/en/latest/config.json
@@ -5,6 +5,10 @@
       "type": "category",
       "label": "Installation",
       "items": ["apisix", "apisix-dashboard", "apisix-ingress-controller"]
+    },
+    {
+      "type": "doc",
+      "id": "FAQ"
     }
   ]
 }

Reply via email to