Exit status 1 while starting meshery

running kvm & minikube for running meshery.
Getting error exit status 1

Hey @parth721 welcome to the Community, on looking at the logs your minikube is not configured to use Kubernetes API at the control plane level. either you can try without using minikube or make sure your minikube has the necessary permission.

1 Like

For those who are facing this issue including me. (its very common)
Just change the version of kubectl. delete minikube & then, start minikube with specified k8s version minikube start --kubernetes-version=v1.23.8. I am using v1.23.8 as of now, v1.22.3 also works fine.
And if you are getting certificate error x509 : copy ca.crt file from .minikube directory & paste in /usr/local/share/ca-certificates/ and update the ca-certificates directory.

reference
minikube issue 14836