I am working with Kubernetes tutorial and deploying the cluster locally with Vagrant.
After the vagrant machine finishes its loading, I get the following outout:
Kubernetes cluster is running. The master is running at: https://10.245.1.2 Administer and visualize its resources using Cockpit: https://10.245.1.2:9090 For more information on Cockpit, visit http://cockpit-project.org The user name and password to use is located in /Users/me/.kube/config
When i go to https://10.245.1.2:9090
i see the login fedora screen.
I do the following:
./cluster/kubectl.sh config view apiVersion: v1 clusters: - cluster: certificate-authority-data: REDACTED server: https://10.245.1.2 name: vagrant contexts: - context: cluster: vagrant user: vagrant name: vagrant current-context: vagrant kind: Config preferences: {} users: - name: vagrant user: client-certificate-data: REDACTED client-key-data: REDACTED password: 9r5V2B2wn6oeaciX username: admin
but the username and password are incorrect.
how am i supposed to connect to the cockpit?
Thanks