📜  在 wsl 上安装 helm - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:28.807000             🧑  作者: Mango

代码示例1
# Download the install shell script
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3

# Allow to Run
chmod 700 get_helm.sh
# Install
./get_helm.sh

# Confirm it works
$helm version
    version.BuildInfo{Version:"v3.0.2", GitCommit:"19e47ee3283ae98139d98460de796c1be1e3975f", GitTreeState:"clean",         GoVersion:"go1.13.5"}