I am completely new in Kubernetes.I was trying to play with minikube in my local machine. I have installed kubectl and minikube locally. When I run
minikube start --vm-driver=virtualbox # and then
minikube status
my output is
E0512 23:33:45.964815 23423 status.go:233] kubeconfig endpoint: extract IP: "minikube"
does not appear in /.kube/config
m01
host: Running
kubelet: Stopped
apiserver: Stopped
kubeconfig: Misconfigured
WARNING: Your kubectl is pointing to stale minikube-vm.
To fix the kubectl context, run `minikube update-context`
When I ran minikube update-context
the output is
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x148ecb0]
..... and more
Can anybody help? Thanks in advance
~/.kube/config
file and runminikube update-context
again? – Handcartminikube version: v1.9.2
commit: 93af9c1e43cab9618e301bc9fa720c63d5efa393
removed and ran the command . same error brother. – Emilioemilyminikube stop && minikube delete
before starting minikube. – Hekkerminikube delete; minikube start
and check? – Handcart