tao12345666333 commented on issue #649: URL: https://github.com/apache/apisix-ingress-controller/issues/649#issuecomment-905146821
the full document is here: https://github.com/apache/apisix-ingress-controller/blob/master/docs/en/latest/deployments/k3s-rke.md#prerequisites ## Prerequisites * Install [K3S](https://rancher.com/docs/k3s/latest/en/installation/) or [Rancher RKE](https://rancher.com/docs/rke/latest/en/installation/). * Install [Helm](https://helm.sh/). * Clone [Apache APISIX Charts](https://github.com/apache/apisix-helm-chart). * Make sure your target namespace exists, kubectl operations through this document will be executed in namespace `ingress-apisix`. ## Install APISIX and apisix-ingress-controller As the data plane of apisix-ingress-controller, [Apache APISIX](http://apisix.apache.org/) can be deployed at the same time using Helm chart. ```shell cd /path/to/apisix-helm-chart helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update kubectl create ns ingress-apisix helm install apisix charts/apisix \ --set gateway.type=NodePort \ --set ingress-controller.enabled=true \ --namespace ingress-apisix \ --kubeconfig /etc/rancher/k3s/k3s.yaml kubectl get service --namespace ingress-apisix ``` **And the first step is `cd /path/to/apisix-helm-chart`.** If you follow the documentation, there will be no problem. -- 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]
