Hi,
I’m trying to debug why the GKE built-in ingress-controller is not spinning up a GCP load balancer for me. I have had this working previously but have presumably broken the configuration somewhere. The only way I can see of getting useful information is by describing the ingress. It has just one event…
$ kubectl describe ing --namespace=stage
Name: flags
Namespace: stage
Address:
TLS:
ssl terminates
Rules:
Host Path Backends
---- ---- --------
Annotations:
Events:
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
29m 29m 1 {loadbalancer-controller } Normal ADD stage/flags
And then nothing further occurs. Previously it would begin running health-checks against the backends, spin up the load balancer, etc...
Where do I start debugging this given I can't access the ingress-controller logs?
Here is the service...
$kubectl describe svc --namespace=stage
Name: flags
Namespace: stage
Labels: <none>
Selector: app=flags
Type: NodePort
IP: 10.192.176.201
Port: http 80/TCP
NodePort: http 30907/TCP
Session Affinity: None
No events.
Thanks,
Andy.