Hi ! I'm setting up my first kubernetes cluster on Debian 8 Machines. I've managed to create Pods, But I'm trying to see my cluster on the dashboard.
First Question, what's the difference between Kubernetes Dashboard <https://github.com/kubernetes/dashboard>and Kube-UI <https://github.com/kubernetes/kube-ui> ? Second Question, The Dashboard seems to be deployed : kube@KUBEMASTER01:~$ kubectl get pods --all-namespaces NAMESPACE NAME READY STATUS RESTARTS AGE kube-system fluentd-elasticsearch-10.25.12.87 1/1 Running 0 2h kube-system fluentd-elasticsearch-10.25.12.88 1/1 Running 0 2h kube-system fluentd-elasticsearch-10.25.12.89 1/1 Running 0 2h kube-system fluentd-elasticsearch-10.25.12.90 1/1 Running 0 2h kube-system kube-dns-v11-mvefy 3/4 Running 34 2h kube-system kube-proxy-10.25.12.87 1/1 Running 0 2h kube-system kube-proxy-10.25.12.88 1/1 Running 0 29m kube-system kube-proxy-10.25.12.89 1/1 Running 0 2h kube-system kube-proxy-10.25.12.90 1/1 Running 0 29m kube-system kubernetes-dashboard-lsoma 1/1 Running 0 1h kube-system kubernetes-dashboard-v1.0.1-udd8g 1/1 Running 0 43m kube@KUBEMASTER01:~$ kubectl cluster-info Kubernetes master is running at http://localhost:8080 KubeDNS is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kube-dns kubernetes-dashboard is running at http://localhost:8080/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard kube@KUBEMASTER01:~$ kubectl version Client Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.4", GitCommit:"3eed1e3be6848b877ff80a93da3785d9034d0a4f", GitTreeState:"clean"} Server Version: version.Info{Major:"1", Minor:"2", GitVersion:"v1.2.4", GitCommit:"3eed1e3be6848b877ff80a93da3785d9034d0a4f", GitTreeState:"clean"} kube@KUBEMASTER01:~$ kubectl get node NAME STATUS AGE 10.0.0.2 Ready 2h 10.0.0.3 Ready 2h 10.0.0.4 Ready 2h 10.0.0.5 Ready 2h But when I'm trying a kubectl view config I've got nothing (I've tried adding a dummy user) kube@KUBEMASTER01:~$ kubectl config view apiVersion: v1 clusters: [] contexts: [] current-context: "" kind: Config preferences: {} users: - name: admin user: password: "1234" When I'm trying to browse to the UI https://KUBEMASTER01/ui I've got a login prompt and no idea what to use (admin:1234 doesn't work) If you have any idea or leads to where to look for ? Thank you for your help. -- You received this message because you are subscribed to the Google Groups "Containers at Google" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-containers. For more options, visit https://groups.google.com/d/optout.
