Setup NGINX Ingress Controller
Rancher Desktop uses K3s under the hood, which in turn uses Traefik as the default ingress controller for your Kubernetes cluster. However, there are unique use cases where NGINX may be required or preferred. Below steps show how to use NGINX Ingress controller for a sample deployment.
Steps
Uncheck
Enable Traefik
from theKubernetes Settings
page to disable Traefik. You may need to exit and restart Rancher Desktop for the change to take effect.Deploy the NGINX ingress controller via
helm
orkubectl
.
- helm
- kubectl
helm upgrade --install ingress-nginx ingress-nginx \
--repo https://kubernetes.github.io/ingress-nginx \
--namespace ingress-nginx --create-namespace
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.1.2/deploy/static/provider/cloud/deploy.yaml
- Wait for the ingress pods to come up and running.
kubectl get pods --namespace=ingress-nginx
- Create a sample deployment and the associated service.
kubectl create deployment demo --image=nginx --port=80
kubectl expose deployment demo
- Create an ingress resource. The following command uses a host that maps to localhost.
kubectl create ingress demo-localhost --class=nginx --rule="demo.localdev.me/*=demo:80"
- Forward a local port to the ingress controller.
kubectl port-forward --namespace=ingress-nginx service/ingress-nginx-controller 8080:80
If you access http://demo.localdev.me:8080/, you should see NGINX Welcome page.
当前内容版权归 Rancher Desktop 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 Rancher Desktop .