jikunchong edited a comment on issue #739:
URL: 
https://github.com/apache/apisix-ingress-controller/issues/739#issuecomment-962602314


   ```shell
   # 提前创建好命名空间
   sudo kubectl create ns apisix-system
   # 安装
   sudo helm install apisix apisix/apisix \
     --set apisix.image.tag=2.10.1-alpine \
     --set gateway.type=NodePort \
     --set admin.allow.ipList="{0.0.0.0/0}" \
     --set dashboard.enabled=true \
     --set ingress-controller.enabled=true \
     --set ingress-controller.config.apisix.serviceNamespace=apisix-system \
     --namespace apisix-system
   ```
   我自己用的 gateway.type=LoadBalancer,当时用 ks 的 PorterLB 没成功,改用安装 MetalLB 的 layer2 
模式成功了 。
   这样搭配起 APISIX,直接  api.domain.com 的方式访问,酷多了,不用象 NodePort 那样要带端口。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to