19 lines
386 B
Markdown
19 lines
386 B
Markdown
<!--
|
|
* @Author: Logan.Li
|
|
* @Gitee: https://gitee.com/attacker
|
|
* @email: admin@attacker.club
|
|
* @Date: 2024-03-21 15:50:36
|
|
* @LastEditTime: 2024-03-21 15:52:51
|
|
* @Description:
|
|
-->
|
|
# helm
|
|
|
|
```bash
|
|
# k8s-master节点安装
|
|
wget https://get.helm.sh/helm-v3.14.2-linux-amd64.tar.gz
|
|
tar -zxf helm-*-linux-amd64.tar.gz
|
|
cp linux-amd64/helm /usr/local/bin/
|
|
|
|
# 验证安装
|
|
helm version
|
|
``` |