You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by kv...@apache.org on 2021/05/21 02:22:58 UTC

[apisix-helm-chart] branch master updated: doc: fix ingress controller admin.allow.ipList (#83)

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

kvn 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 024a8ec  doc: fix ingress controller admin.allow.ipList (#83)
024a8ec is described below

commit 024a8ec3f52e82e9b1dfe9605921f4d2f12fc4d7
Author: Sarasa Kisaragi <li...@gmail.com>
AuthorDate: Fri May 21 10:22:51 2021 +0800

    doc: fix ingress controller admin.allow.ipList (#83)
    
    Signed-off-by: Ling Samuel <li...@gmail.com>
---
 docs/en/latest/apisix.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/en/latest/apisix.md b/docs/en/latest/apisix.md
index 68bf934..bfe46a2 100644
--- a/docs/en/latest/apisix.md
+++ b/docs/en/latest/apisix.md
@@ -63,19 +63,19 @@ $ helm install apisix . -n default \
 
 2. Why get 403 when I access Apache APISIX admin api?
 
-We can define `allow.ipList` in CIDR.
+We can define `admin.allow.ipList` in CIDR.
 
 ```shell
 $ helm install apisix . -n default \
-    --set allow.ipList="10.22.100.12/8" \
-    --set allow.ipList="172.0.0.0/24"
+    --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 `allow.ipList=""`
+If you want to allow all IPs for a quick test, just set `admin.allow.ipList=""`
 
 ```shell
 $ helm install apisix . -n default \
-    --set allow.ipList=""
+    --set admin.allow.ipList=""
 ```
 
 ## Seeking help