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.1

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

2018-01-09 Thread 'Tim Hockin' via Kubernetes user discussion and Q
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