docs: fix APISIX helm installation (#459)

This change was introduced from https://github.com/apache/apisix-helm-chart/pull/74

Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
diff --git a/docs/en/latest/deployments/ack.md b/docs/en/latest/deployments/ack.md
index 0a835dd..224cc23 100644
--- a/docs/en/latest/deployments/ack.md
+++ b/docs/en/latest/deployments/ack.md
@@ -43,7 +43,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=LoadBalancer \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --set etcd.persistence.storageClass="alicloud-disk-ssd" \
   --set etcd.persistence.size="20Gi" \
   --namespace ingress-apisix \
diff --git a/docs/en/latest/deployments/aws.md b/docs/en/latest/deployments/aws.md
index e7ca320..69e1724 100644
--- a/docs/en/latest/deployments/aws.md
+++ b/docs/en/latest/deployments/aws.md
@@ -43,7 +43,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=LoadBalancer \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --namespace ingress-apisix \
 kubectl get service --namespace ingress-apisix
 ```
diff --git a/docs/en/latest/deployments/azure.md b/docs/en/latest/deployments/azure.md
index 4560983..2f1811a 100644
--- a/docs/en/latest/deployments/azure.md
+++ b/docs/en/latest/deployments/azure.md
@@ -43,7 +43,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=LoadBalancer \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --namespace ingress-apisix
 kubectl get service --namespace ingress-apisix
 ```
diff --git a/docs/en/latest/deployments/gke.md b/docs/en/latest/deployments/gke.md
index 36afee4..a0f81e6 100644
--- a/docs/en/latest/deployments/gke.md
+++ b/docs/en/latest/deployments/gke.md
@@ -43,7 +43,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=LoadBalancer \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --namespace ingress-apisix
 kubectl get service --namespace ingress-apisix
 ```
diff --git a/docs/en/latest/deployments/k3s-rke.md b/docs/en/latest/deployments/k3s-rke.md
index b928988..2c1ec4f 100644
--- a/docs/en/latest/deployments/k3s-rke.md
+++ b/docs/en/latest/deployments/k3s-rke.md
@@ -45,7 +45,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=NodePort \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --namespace ingress-apisix \
   --kubeconfig /etc/rancher/k3s/k3s.yaml
 kubectl get service --namespace ingress-apisix
diff --git a/docs/en/latest/deployments/kubesphere.md b/docs/en/latest/deployments/kubesphere.md
index fbeeefc..54ca953 100644
--- a/docs/en/latest/deployments/kubesphere.md
+++ b/docs/en/latest/deployments/kubesphere.md
@@ -44,7 +44,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=NodePort \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --namespace ingress-apisix \
 kubectl get service --namespace ingress-apisix
 ```
diff --git a/docs/en/latest/deployments/minikube.md b/docs/en/latest/deployments/minikube.md
index e671cfa..f2bedd1 100644
--- a/docs/en/latest/deployments/minikube.md
+++ b/docs/en/latest/deployments/minikube.md
@@ -41,7 +41,7 @@
 # Use `helm search repo apisix` to search charts about apisix
 helm repo update
 helm install apisix apisix/apisix \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --namespace ingress-apisix
 kubectl get service --namespace ingress-apisix
 ```
diff --git a/docs/en/latest/deployments/tke.md b/docs/en/latest/deployments/tke.md
index 92b1bef..b1ac3ab 100644
--- a/docs/en/latest/deployments/tke.md
+++ b/docs/en/latest/deployments/tke.md
@@ -43,7 +43,7 @@
 helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=LoadBalancer \
-  --set allow.ipList="{0.0.0.0/0}" \
+  --set admin.allow.ipList="{0.0.0.0/0}" \
   --set etcd.persistence.size=10Gi \
   --namespace ingress-apisix \
 kubectl get service --namespace ingress-apisix