I'm installing APISIX according to this article, which mentions three different installation methods: Docker RPM and helm, I'm somewhat confused about what way is it better to use the helm method to install?
Asked
Active
Viewed 194 times
1 Answers
0
If you want to deploy Apache APISIX[1] on Kubernetes, installing with Helm is a good option.
And the project provides an official Helm chart[2].
For example, you can use the following command to complete the installation of APISIX and APISIX Ingress[3]
helm repo add apisix https://charts.apiseven.com
helm install apisix apisix/apisix --set gateway.type=NodePort --set ingress-controller.enabled=true --set ingress-controller.config.apisix.serviceNamespace=apisix --namespace apisix --create-namespace --set ingress-controller.config.apisix.serviceName=apisix-admin

Jintao Zhang
- 778
- 5
- 9