This message was deleted.
# k3s
a
This message was deleted.
c
it just uses the cluster nodes as LB endpoints. https://docs.k3s.io/networking#how-servicelb-works
s
so, that means, actually it does not distribute any access traffic at node level, if so what's major difference with nodeport way for exposing the service?
another confuse is why ServiceLB still create a nodeport however a same port as cluster service port will be created automatically when createing loadbalance type service. what's usage about this nodeport?
@creamy-pencil-82913
c
It’s not a real loadbalancer
but it lets you use services of type LoadBalancer in environments that don’t have an external loadbalancer available, when you don’t want to deploy something more complicated like kube-vip or metallb
it’s like the local-path provisioner for PVCs - better than nothing, if you want to use PVs. It’s not intended to be any more than that.
s
appreciated for your help!