I'm following the documentation on exposing UDP/TCP services via NGINX Controller. All examples there show how to map a single port. Is there a way to map a range of ports, similar to docker-compose's yaml? e.g.
ports:
- "1000-2000:1000-2000"
I need this because the service I'm interested in deploying has an API which allocates ports to clients once they request it, assuming there are free ports within a certain fixed range (1000-2000). The clients then need to contact the service over the allocated port.