知乎专栏 |
目录
https://helm.sh
CURL 安装
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
二进制安装
cd /usr/local/src/ wget https://get.helm.sh/helm-v3.9.4-linux-amd64.tar.gz tar zxvf helm-v3.9.4-linux-amd64.tar.gz mv linux-amd64 /srv/helm-v3.9.4 alternatives --install /usr/local/bin/helm helm /srv/helm-v3.9.4/helm 10
[root@netkiller ~]# dnf install -y snapd [root@netkiller ~]# ln -s /var/lib/snapd/snap /snap [root@netkiller ~]# systemctl enable --now snapd.socket [root@netkiller ~]# systemctl start --now snapd.socket [root@netkiller ~]# snap install helm --classic
cat >> /etc/profile.d/snap.sh <<EOF export PATH=$PATH:/snap/bin EOF source /etc/profile.d/snap.sh