Re: [kubernetes-users] Can't access UDP port on load balancer in kubernetes on Google kubernetes engine

2018-02-25 Thread manubotija
On Wednesday, 10 January 2018 03:31:54 UTC+1, Tameem Iftikhar wrote: > Hello,  > > > Thanks for the response. I just tried the exact same thing on google > kubernetes engine. Created a two node cluster and pointed kubectl towards it:  > > > > > ➜  ~ kubectl get svc > > NAME         CLUSTER

Re: [kubernetes-users] Can't access UDP port on load balancer in kubernetes on Google kubernetes engine

2018-01-09 Thread Tameem Iftikhar
Hello, Thanks for the response. I just tried the exact same thing on google kubernetes engine. Created a two node cluster and pointed kubectl towards it: *➜ **~* kubectl get svc NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes 10.11.240.1443/

Re: [kubernetes-users] Can't access UDP port on load balancer in kubernetes on Google kubernetes engine

2018-01-09 Thread
Make sure all firewalls are open? I just tested it and it works: ``` $ kubectl run udp --image=ubuntu -- bash -c "while true; do sleep 10; done" deployment "udp" created $ kubectl expose deployment udp --port=12345 --protocol=UDP --type=LoadBalancer service "udp" exposed ``` Then I got the

[kubernetes-users] Can't access UDP port on load balancer in kubernetes on Google kubernetes engine

2018-01-09 Thread Tameem Iftikhar
down votefavorite I am trying to run a very simple UDP service in kubernetes on Google Cloud but am unable to access the port I am exposing to the internet. Here is the deploymen