Kubernetes:kubectl 运行:找不到命令

krm*_*007 9 gcloud kubernetes kubectl

我正在运行 kubectl 命令以在 gcloud 中部署我的应用程序。但是突然 kubectl 命令停止工作。kubectl命令工作正常,但对于其他所有内容,它说找不到命令。

kubectl create bash: kubectl create: command not found

kubectl run bash: kubectl run: command not found

SBGML02586:~ mku01$ kubectl
kubectl controls the Kubernetes cluster manager. 

Find more information at: https://kubernetes.io/docs/reference/kubectl/overview/

Basic Commands (Beginner):
  create         Create a resource from a file or from stdin.
  expose         Take a replication controller, service, deployment or pod and
expose it as a new Kubernetes Service
  run            Run a particular image on the cluster
  set            Set specific features on objects......
Run Code Online (Sandbox Code Playgroud)

Pro*_*ton 9

我第一次在 Linux 上设置 Kubernetes 时遇到了类似的错误:

当我尝试运行命令时:

kubectl cluster-info
kubectl version
Run Code Online (Sandbox Code Playgroud)

我收到错误:

-bash: kubectl: command not found
Run Code Online (Sandbox Code Playgroud)

这是我修复它的方法

使用以下命令下载最新的 Kubernetes 版本:

curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl"
Run Code Online (Sandbox Code Playgroud)

使 kubectl 二进制可执行文件:

chmod +x ./kubectl
Run Code Online (Sandbox Code Playgroud)

将二进制文件移动到您的 PATH:

sudo mv ./kubectl /usr/local/bin/kubectl
Run Code Online (Sandbox Code Playgroud)

测试以确保您安装的版本是最新的:

kubectl cluster-info
kubectl version
Run Code Online (Sandbox Code Playgroud)

您可以在 Kubernetes 官方文档中阅读更多相关信息:安装和设置 kubectl

就这样。

我希望这有帮助


Rit*_*esh 9

我在 Windows 上使用 wsl 时收到此消息。kubectl正在工作,但突然开始显示相同的错误

/mnt/c/Users/xxxx$ kubectl
kubectl: command not found
Run Code Online (Sandbox Code Playgroud)

问题是我重新启动笔记本电脑后 docker 没有启动

:/usr/local/bin$ ls -ltr
total 2548
-rwxr-xr-x 1 root root     221 Sep 18  2020 pip3.8
-rwxr-xr-x 1 root root     221 Sep 18  2020 pip3
-rwxr-xr-x 1 root root     221 Sep 18  2020 pip
-rwxr-xr-x 1 root root     208 Sep 18  2020 wheel
-rwxr-xr-x 1 root root 2592768 Apr  5 10:57 kubectx
lrwxrwxrwx 1 root root      55 May 24 11:22 kubectl -> /mnt/wsl/docker-desktop/cli-tools/usr/local/bin/kubect
Run Code Online (Sandbox Code Playgroud)

一旦我启动我的 docker 应用程序,它就开始工作(我在 Windows 上使用 docker-desktop,并且在启动时禁用了自动启动)


Mik*_*iLL 5

自制用户可以通过以下方式修复它:

brew reinstall kubectl
Run Code Online (Sandbox Code Playgroud)

可能需要遵循以下内容:

brew link --overwrite kubernetes-cli
Run Code Online (Sandbox Code Playgroud)