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/04/06 09:54:41 UTC

[apisix-ingress-controller] branch master updated: ack env install apisix (#344)

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-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new d94117e  ack env install apisix (#344)
d94117e is described below

commit d94117edd32f0e30c1b41ba4e17d4f9f1704809d
Author: 笨兔儿 <ze...@126.com>
AuthorDate: Tue Apr 6 17:54:34 2021 +0800

    ack env install apisix (#344)
    
    * ack env install apisix
    
    * Update ack.md
    
    Co-authored-by: 曾强 <ze...@mucang.cn>
---
 docs/en/latest/deployments/ack.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/docs/en/latest/deployments/ack.md b/docs/en/latest/deployments/ack.md
index d6cb0e0..936a996 100644
--- a/docs/en/latest/deployments/ack.md
+++ b/docs/en/latest/deployments/ack.md
@@ -44,6 +44,8 @@ helm repo update
 helm install apisix apisix/apisix \
   --set gateway.type=LoadBalancer \
   --set allow.ipList="{0.0.0.0/0}" \
+  --set etcd.persistence.storageClass="alicloud-disk-ssd" \
+  --set etcd.persistence.size="20Gi" \
   --namespace ingress-apisix \
 kubectl get service --namespace ingress-apisix
 ```
@@ -58,6 +60,15 @@ kubectl get service apisix-gateway --namespace ingress-apisix -o jsonpath='{.sta
 
 Another thing should be concerned that the `allow.ipList` field should be customized according to the [Pod CIRD configuration of ACK](https://www.alibabacloud.com/help/en/doc-detail/86500.htm), so that the apisix-ingress-controller instances can access the APISIX instances (resources pushing).
 
+`ACK` PV require min_size is `20Gi`,cluster with `flexVolume` component select `alicloud-disk-ssd`,if with `helm values.yml` configure startup `apisix`,[more helm etcd configure](https://hub.kubeapps.com/charts/bitnami/etcd),configure format sample:
+
+```yaml
+etcd:
+  persistence:
+    storageClass: "alicloud-disk-ssd"
+    size: 20Gi
+```
+
 ## Install apisix-ingress-controller
 
 You can also install apisix-ingress-controller by Helm Charts, it's recommended to install it in the same namespace with Apache APISIX.