Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GKE is not creating Load Balancer automatically #868

Closed
dvaldivia opened this issue Sep 24, 2019 · 1 comment
Closed

GKE is not creating Load Balancer automatically #868

dvaldivia opened this issue Sep 24, 2019 · 1 comment

Comments

@dvaldivia
Copy link

I'm creating an ingress controller but no endpoint ip is getting assigned and the load balancer is not getting created, my question is how can I debug this? there doesn't seem to be an error shown anywhere, nor kubernetes nor gke console.

This ingress used to work, no idea why it stopped working, I've waited a few hours

ingress-app.yaml

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: myapp-dev-ingress-http
  annotations:
    kubernetes.io/ingress.global-static-ip-name: myapp-dev
    certmanager.k8s.io/cluster-issuer: letsencrypt-prod
    certmanager.k8s.io/acme-http01-edit-in-place: "true"
  labels:
    app: myapp-dev
spec:
  rules:
  - host: myapp.dev
    http:
      paths:
      - path: /api/
        backend:
          serviceName: my-service
          servicePort: 8000
  tls:
  - secretName: myapp-dev-tls
    hosts:
    - myapp.dev
@dvaldivia
Copy link
Author

The problem was that the http services didn't return 200 on /

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant