kube-install icon indicating copy to clipboard operation
kube-install copied to clipboard

k8s dashboard can't search resource, like pod, deployment.

Open huangxuelun opened this issue 3 years ago • 3 comments

kube-install version: 0.7.4 k8s version: 1.23.0 OS: centOS 7.9 this issue exists for a long time. this version still has it, so I raise up it.

image

huangxuelun avatar Dec 19 '21 02:12 huangxuelun

This is because the version of kube-dashboard is too low. In addition to the search feature, other features should be available.

cloudnativer avatar Dec 22 '21 07:12 cloudnativer

If you use the version of kube-install 0.7*, you can upgrade manually using the following methods:

docker pull cloudnativer/kubernetes-dashboard-amd64:v2.4.0
temptag=`cat /etc/docker/daemon.json | grep 5000 | cut -d "\"" -f 2 | head -1`
docker tag cloudnativer/kubernetes-dashboard-amd64:v2.4.0 $temptag/kubernetes-dashboard-amd64:v2.4.0
docker push $temptag/kubernetes-dashboard-amd64:v2.4.0
kubectl edit deployment kube-dashboard -n kube-system

Find image: $temptag/kubernetes-dashboard-amd64:v2.2.0 , Change it to image: $temptag/kubernetes-dashboard-amd64:v2.4.0, Then save and quit. After completing the upgrade of kube-dashboard, you can use it again.

cloudnativer avatar Dec 22 '21 07:12 cloudnativer

We will upgrade kube-dashboard in kube-install 0.8.0. You can follow our roadmap: https://github.com/cloudnativer/kube-install/blob/master/docs/roadmap.md

cloudnativer avatar Dec 22 '21 07:12 cloudnativer