This message was deleted.
# rke2
a
This message was deleted.
c
I would generally avoid using bare TCP/UDP through an Ingress. Ingress is designed to do L7 HTTP/HTTPS routing. If you need to expose a bare port, without any routing or hostname matching, use a LoadBalancer Service.
🤝🏼 1
In particular, trying to mix URL-based routing (
<http://example.com/prefix|example.com/prefix>
-> bare TCP port) is unlikely to work right if you can do it at all.
o
yeah, so only/preferred method would be to use LB or nodeport, right?
c
yep
o
perfect, thanks brandond
b
https://gateway-api.sigs.k8s.io/ Might also be an option!