Richard0706 opened a new issue, #11236:
URL: https://github.com/apache/apisix/issues/11236
### Description
About apisix's ingress crd,I know that it can be configured like this:
```
apiVersion: apisix.apache.org/v2
kind: ApisixRoute
metadata:
name: httpbin-route
spec:
http:
- name: route-1
match:
hosts:
- local.httpbin.org
paths:
- /*
backends:
- serviceName: httpbin
servicePort: 80
```
But I need to configure my upstream node, it is not a k8s service,how can i
do it,like this:
```
apiVersion: apisix.apache.org/v2
kind: ApisixRoute
metadata:
name: httpbin-route
spec:
http:
- name: route-1
match:
hosts:
- local.httpbin.org
paths:
- /*
backends:
- host: 192.168.1.80
port: 8090
```
this can't possibly work!**apisix.apache.org/v2**,does it have the ability
to configure endpoints?
**I know I can define an upstream service with host and port ,and then use
CRD, but I don't want to do that. I need your help.**
### Environment
- APISIX version (run `apisix version`):3.2 LTS
- Operating system (run `uname -a`):
- OpenResty / Nginx version (run `openresty -V` or `nginx -V`):
- etcd version, if relevant (run `curl
http://127.0.0.1:9090/v1/server_info`):
- APISIX Dashboard version, if relevant:
- Plugin runner version, for issues related to plugin runners:
- LuaRocks version, for installation issues (run `luarocks --version`):
--
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]