pkking opened a new issue, #1894: URL: https://github.com/apache/apisix-ingress-controller/issues/1894
### Issue description Hi, i have setup a kubernetes cluster using `kind` and here's [my config](https://github.com/pkking/homelab/blob/main/kind/kind-config.yaml) To test my kind cluster, i run: ``` $ kubectl apply -f https://raw.githubusercontent.com/pkking/homelab/main/ingress/nginx-deploy.yaml $ kubectl apply -f https://raw.githubusercontent.com/pkking/homelab/main/ingress/nginx.yaml ``` and then `curl -v localhost -H "Host: local.httpbin.org" ` will return the `httpbin` page: ``` $ kubectl get ingress NAME CLASS HOSTS ADDRESS PORTS AGE httpserver-ingress <none> local.httpbin.org localhost 80 63s ``` But then i tried deploy a apisix controller, it seems not works: ``` $ kubectl apply -f https://raw.githubusercontent.com/pkking/homelab/main/ingress/apisix-apiroute.yaml ``` Then `curl -v localhost -H "Host: local.httpbin.org" ` will just return 404; and have no idea why ``` $ kubectl get apisixroute NAME HOSTS URIS AGE httpserver-route ["local.httpbin.org"] ["/*"] 27m ``` Any suggestions appreciated!! ### Environment - your apisix-ingress-controller version (output of apisix-ingress-controller version --long): ``` $ helm list -A NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION apisix ingress-apisix 1 2023-07-18 17:15:09.356819359 +0800 CST deployed apisix-2.1.0 3.4.0 ```` - your Kubernetes cluster version (output of kubectl version): K8s Rev: v1.27.3 - if you run apisix-ingress-controller in Bare-metal environment, also show your OS version (uname -a): 5.15.0-58-generic #64-Ubuntu SMP Thu Jan 5 11:43:13 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux -- 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]
