Hi Guys,
I have a K3S cluster that is using klipper LB. AS you see in the following, the klipper load balancer is able to provide external-ip's quite readily.
[root knative]# k get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kubernetes ClusterIP 10.43.0.1 <none> 443/TCP 15d
test LoadBalancer 10.43.100.59 192.168.56.128,192.168.56.129 19081:32284/TCP 4d8h
nginx LoadBalancer 10.43.200.125 192.168.56.128,192.168.56.129 9080:32641/TCP 4d2h
the-app LoadBalancer 10.43.51.139 192.168.56.128,192.168.56.129 19082:30596/TCP 13h
operator-webhook ClusterIP 10.43.63.144 <none> 9090/TCP,8008/TCP,443/TCP 3h31m
I'm new to KNative. I've installed the operator, eventing, and serving.
Currently I am trying to get my knative services exposed via external-ip. However its currently pending.
[root master knative]# !191
k -n knative-serving get service kourier
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kourier LoadBalancer 10.43.206.100 <pending> 80:30102/TCP,443:31882/TCP 3h9m
I'm looking for a couple of pointers to help me figure out the missing magic.
Thanks in advance for any guidance.