简体   繁体   English

kubernetes 上的 helm 安装过程

[英]helm installation process on kubernetes

I am trying to install helm on a kubernetes cluster我正在尝试在 kubernetes 集群上安装 helm

I've downloaded •Linux amd64 Helm 2.12.3.我已经下载了•Linux amd64 Helm 2.12.3。

extracted the tar提取焦油

tar -zxvf helm-v2.12.3-linux-amd64.tar.gz

moved the file移动了文件

mv linux-amd64/helm /usr/local/bin/helm

cd /usr/local/bin/helm

running ls produces运行 ls 产生

helm in green绿色的头盔

helm help

produces helm: command not found产生掌舵:找不到命令

./helm

produces产生

The Kubernetes package manager to begin working with HELM run the 'helm init' command and displays all of the flags and available commands开始使用 HELM 的 Kubernetes 包管理器运行“helm init”命令并显示所有标志和可用命令

helm init

produces helm: command not found产生掌舵:找不到命令

您必须继续在命令前面添加./ ,或者将/usr/local/bin到您的 PATH 变量中。

将 helm 二进制文件复制到 /usr/local/bin 目录,或者您可以将保存 helm 的当前目录添加到$PATH

/usr/local/bin/etc/environment file PATH 变量中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 安装过程中出现“找不到命令”错误 - “Command not found” error in the installation process phpunit无法遵循安装过程 - phpunit impossible to follow the installation process Eclipse C ++ On Ubuntu安装过程 - Eclipse C++ On Ubuntu installation Process Nokogiri(在Ubuntu上)的健壮安装过程是什么? - What is a robust installation process for Nokogiri (on Ubuntu)? 在 Kubernetes pod 中以非 root 用户身份运行 cron 作为后台进程 - Run cron as background process in Kubernetes pod running as non root user Zend Framework 2.5安装过程+ Nginx + Ubuntu 14.04 - Zend Framework 2.5 installation process + Nginx + Ubuntu 14.04 在Ubuntu E中安装Oracle java 7:子进程/ usr / bin / dpkg返回错误代码(1) - Oracle java 7 Installation in Ubuntu E: Sub-process /usr/bin/dpkg returned an error code (1) 如何在 Ubuntu 安装过程中卸载 Eclipse IDE 和已安装的软件包? - How to Uninstall Eclipse IDE and the packages that were installed, during installation process in Ubuntu? Jenkins安装报错:E:子进程/usr/bin/dpkg返回错误码(1) - Jenkins installation error: E: Sub-process /usr/bin/dpkg returned an error code (1) Passbolt 安装失败:进程 875 当前正在使用 usermod www-data - Passbolt Installation fails: usermod www-data is currently used by process 875
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM