简体   繁体   中英

helm installation process on kubernetes

I am trying to install helm on a kubernetes cluster

I've downloaded •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

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 init

produces helm: command not found

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

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM