Questions tagged [kubernetes-dashboard]

Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself.

Dashboard documentation can be found on Wiki pages.

212 questions
3
votes
1 answer

How to grant access to specify namespace in kubernetes dashboard?

I have multiple namespace in my k8s cluster and user too. I deployed K8S dashboard, and now I want to grant access to namespace to specify user. EX: user A only access namespace A on dashboard user B is only access namespace B on…
3
votes
1 answer

How to view Roles and ClusterRoles details in kubernetes dashboard

I am using kubernetes dasboard in version: v1.10.1 When I go to "Roles" tab I can see a list of ClusterRoles and Roles. I would like to see more details about a particular role from the list, but I do not see any "details" button. I want to see…
fascynacja
  • 1,625
  • 4
  • 17
  • 35
3
votes
2 answers

nginx-ingress not forwarding to dashboard

Hello and thank you for taking the time to read my question. First, I have an EKS cluster setup to use public and private subnets. I generated the cluster using cloudformation as described at…
3
votes
3 answers

Kubernetes dashboard: Get https://10.96.0.1:443/version: dial tcp 10.96.0.1:443: i/o timeout

I have a Kubernetes cluster in vagrant (1.14.0) and installed calico. I have installed the kubernetes dashboard. When I use kubectl proxy to visit the dashboard: Error: 'dial tcp 192.168.1.4:8443: connect: connection refused' Trying to reach:…
DenCowboy
  • 13,884
  • 38
  • 114
  • 210
3
votes
1 answer

Kubernetes dashboard exec issue

seeing an odd behaviour with kubernetes-dashboard where the exec option is not taking me into a shell. Instead it shows me a snippet of the dashboard UI in it? Has anyone noticed this? I cannot see any errors in the logs for the same. I am using the…
devops84uk
  • 691
  • 2
  • 6
  • 20
3
votes
1 answer

Kubernetes Dashboard CrashLoopBackOff, Get error "connect: no route to host", How could I fix it?

I have deployed the Kubernetes dashboard which ended up in CrashLoopBackOff status. When I run: $ kubectl logs kubernetes-dashboard-767dc7d4d-mc2sm --namespace=kube-system the output is: Error from server: Get…
Rukeith
  • 665
  • 1
  • 8
  • 22
3
votes
1 answer

services is forbidden: User \"system:anonymous\" cannot list services in the namespace \"kube-system\

I have created a fresh kubernetes cluster on VirtualBox. I have one master node and two worker nodes. I want to use the dashboard but I get error. When I run kubectl proxy the master start listening on port 8001: Starting to serve on…
Sinai
  • 620
  • 1
  • 14
  • 36
3
votes
2 answers

How to enable kubernetes dashboard via nodeport?

I'm trying to enable dashboard via nodeport service. I have 3 VMs: 192.168.100.31 - master 192.168.100.32 - minion 192.168.100.33 - minion (dashboard here) After applying: kubectl apply -f…
Silk0vsky
  • 941
  • 1
  • 18
  • 34
3
votes
1 answer

kubernetes dashboard will not load

I am completely new to Kubernetes, so go easy on me. I am running kubectl proxy but am only seeing the JSON output. Based on this discussion I attempted to set the memory limits by running: kubectl edit deployment kubernetes-dashboard --namespace…
el n00b
  • 1,957
  • 7
  • 37
  • 64
2
votes
0 answers

K8s dashboard exposed through an ALB ingress does not become accessible, gives 400

Trying to make kubernetes-dashboard accessible from the outside world on an AWS EKS cluster using and alb ingress. Everything looks fine and deployed. I can access the running dashboard using kubectl proxy but not via the custom domain…
2
votes
1 answer

Use static token while login into kubernetes dashboard

I have setup k3s. Also I have setup kubernetes-dashboard on k3s. But I want to use static token while login into the kubernetes dashboard. I does not want to use different token each time when I setup k3s and kubernetes-dashboard. I found this link…
2
votes
0 answers

How to setting --token-auth-file for k3s

We set up the k3s environment and to access the Kubernetes dashboard we use Kubernetes-dashboard. I want to use the --token-auth-file option for the static token in the k3s. After that, I want to use a static token login to the k3s dashboard. How to…
2
votes
2 answers

Enable SSL connection for Kubernetes Dashboard

I use this command to install and enable Kubernetes dashboard on a remote host: kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.6.1/aio/deploy/recommended.yaml kubectl proxy --address='192.168.1.132' --port=8001…
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
2
votes
0 answers

External access to the kubernetes dashboard (or any other app) that is on a physical cluster using microk8s

I am attempting to access the dashboard from my laptop on the LAN The Cluster is on three Raspberry PIs kubectl describe service/kubernetes-dashboard -n kube-system produces the following Name: kubernetes-dashboard Namespace: …
Keith
  • 31
  • 7
2
votes
0 answers

Access Kubernetes Dashboard using kubectl proxy remotly for multiple user

I have setup kubernetes cluster in EKS. API server access is in private mode. I have bastion host from which i can run kubectl commands. I want to access kubernetes dashboard remotly. One thing i can do is ssh -L localhost:8001:127.0.0.1:8001 @…
Akshay Gopani
  • 473
  • 4
  • 16
1 2
3
14 15