Andre
Andre

Reputation: 790

Kubernetes UI on Google Container Engine

Is there any way to access the UI on the GKE service?

I tried following the information on https://github.com/kubernetes/kubernetes/blob/v1.0.6/docs/user-guide/ui.md And got this

Error: 'empty tunnel list.'
Trying to reach: 'http://10.64.xx.xx:8080/'

Is this feature turned on ?

Upvotes: 1

Views: 321

Answers (2)

David Martin
David Martin

Reputation: 347

Something to check.. make sure you haven't added ssh keys to the cluster nodes metadata. I did this a few weeks back... opened a support case.. and found that I should have added the keys to the project metadata instead.

Upvotes: 1

Alex Robinson
Alex Robinson

Reputation: 13397

That error means that the master can't communicate with the nodes in your cluster. Have you deleted the instances from your cluster, or messed with the firewalls? There should be a firewall allowing access SSH to the nodes in the cluster from the master's IP address, and an entry in your project-wide metadata with the master's public SSH key.

Upvotes: 2

Related Questions