minikube start
命令后出现的无法启动的异常Unable to restart cluster, will reset it: apiserver healthz: apiserver process never appeared
翻译:无法重新启动群集,将重置它:apiserver healthz:apiserver进程从未出现
问题分析:未构建成功服务,并由于存在国内墙的困扰,哪怕指定了阿里云的镜像库依旧失败,这可能是由于使用官方的minikube 导致自动拉起的是最新的,而镜像库并非是最新的,导致无法下载完整的资源导致的
minikube start --kubernetes-version=v1.23.8
minikube start --image-mirror-country='cn' --image-repository='registry.cn-hangzhou.aliyuncs.com/google_containers'
后续采用minikube dashboard
时出现错误Error: no DISPLAY environment variable specified
只需要进行代理访问即可。
代理转发代码(需要安装kubectl
)kubectl官方安装教程链接
nohup kubectl proxy --port=想要转发到的端口 --address='当前ip地址' --accept-hosts='^.*' > ./nohup.out &
sudo
命令给指定用户