Hi all,

I'm having some issues creating a new ingress on GKE.

I already have a GCE ingress, however I'd like to add an Nginx ingress so I 
can use ClusterIP services.

When I try and create the ingress, the endpoint shows as 127.0.0.1 and no 
GCE load balancer or external IP is created - not sure what I'm doing wrong.

Here is my yaml:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: nginx-ingress-1
  annotations:
    kubernetes.io/ingress.class: "nginx"
spec:
  tls:
  - hosts:
    - nginx-ingress-1.mydomain.com
    secretName: 2017-2018-tls
  rules:

    - host: nginx-ingress-1.mydomain.com
      http:
        paths:
        - backend:
            serviceName: test-service
            servicePort: 80


Any help appreciated!

Many thanks,
Gary

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q&A" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to