On GCE with kube 1.3, I'm trying to create a LoadBalacer like so:

      kind: Service
      apiVersion: v1
      metadata:
        name: coredns-one
      spec:
        ports:
          - name: cdns-one
            port: 53
            protocol: UDP
          - name: cdns-one-tcp
            port: 53
            protocol: TCP
        selector:
          name: coredns-one
        type: LoadBalancer

However the response I am getting back from kubectl create is:

The Service "coredns-one" is invalid.
spec.ports: Invalid value: 
[{"name":"cdns-one","protocol":"UDP","port":53,"targetPort":53,"nodePort":0},{"name":"cdns-one-tcp","protocol":"TCP","port":53,"targetPort":53,"nodePort":0}]:
 
cannot create an external load balancer with mix protocols

I figured the fixes in 1.3 would allow me to create this kind of service. 
Is it just that it's not (yet) possible with GCE?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Containers at Google" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-containers.
For more options, visit https://groups.google.com/d/optout.

Reply via email to