安装helm
# 安装 Helm CLI
在开始配置 Helm 之前,我们需要先安装 您将与之交互的命令行工具。为此,请运行以下命令:
curl -sSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
1
我们可以验证版本
helm version --short
1
最后,让我们为命令配置 Bash 补全:helm
helm completion bash >> ~/.bash_completion
. /etc/profile.d/bash_completion.sh
. ~/.bash_completion
source <(helm completion bash)
1
2
3
4
2
3
4
Last Updated: 2023/11/08, 14:45:54