我正在尝试在Windows上安装minikube
,但是在安装过程中会出现一些错误,如下所示:
E0328 17:03:10.003001 5340 start.go:209] Error caching images: Caching images for kubeadm: caching images: caching image C:\Users\User\.minikube\cache\images\k8s.gcr.io\kube-proxy_v1.14.0: getting destination path: parsing docker archive dst ref: replace a Win drive letter to a volume name: exec: "wmic": executable file not found in %PATH%
- Preparing Kubernetes environment ...
X Unable to load cached images: loading cached images: loading image C:\Users\User\.minikube\cache\images\k8s.gcr.io\k8s-dns-kube-dns-amd64_1.14.13: FindFirstFile C:\Users\User\.minikube\cache\images\k8s.gcr.io\k8s-dns-kube-dns-amd64_1.14.13: The system cannot find the path specified.
- Pulling images required by Kubernetes v1.14.0 ...
能请你帮我吗?
答案 0 :(得分:0)
您没有提供尝试安装minikube的方式以及PC上安装的其他产品的信息。因此很难提供100%准确的答案。我将尝试提供一种用于在Windows上安装minikube的方法,如果这样做没有帮助,请提供更多有关导致错误的步骤的详细信息。我不想猜测,但似乎您没有添加minikube 二进制文件添加到您的PATH:
executable file not found in %PATH%
- Preparing Kubernetes environment ...
首先让我们删除当前安装的所有跟踪。
运行minikube delete
转到C:\ Users \ current-user \,然后删除.kube
和.minikube
文件夹。
打开Powershell并按照here的说明安装Chocolatey:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
安装后,运行choco install minikube kubernetes-cli
。
现在,根据要使用的虚拟机管理程序,可以执行此tutorial(Hyper-V)中的步骤。您也可以使用VirtualBox,但是您将无法使用Docker for Windows(假设您愿意)-您可以在我的答案here中阅读更多内容。如here所述,另一种可能性是在Docker for Windows中使用Kubernetes-但是在这种情况下您将不会使用minikube。