helm安裝及配置

lldhsds發表於2024-07-02

helm安裝及配置

1. 安裝helm

helm下載地址:https://github.com/kubernetes/helm/releases

根據helm和k8s配套關係,下載安裝合適的helm版本。下面為版本配套關係

Helm 版本 支援的 Kubernetes 版本
3.12.x 1.27.x - 1.24.x
3.11.x 1.26.x - 1.23.x
3.10.x 1.25.x - 1.22.x
3.9.x 1.24.x - 1.21.x
3.8.x 1.23.x - 1.20.x
3.7.x 1.22.x - 1.19.x
3.6.x 1.21.x - 1.18.x
3.5.x 1.20.x - 1.17.x
3.4.x 1.19.x - 1.16.x
3.3.x 1.18.x - 1.15.x
...

二進位制安裝

我這裡的k8s版本為1.18,下載helm3.6.1:

wget https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz
# 解壓壓縮包
tar -xf helm-v3.6.1-linux-amd64.tar.gz
# 將helm檔案複製到系統path路徑下
cp linux-amd64/helm /usr/local/bin/helm
# 驗證
helm version
# 幫助文件
helm help

指令碼安裝

Helm現在有個安裝指令碼可以自動拉取最新的Helm版本並在本地安裝

$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
$ chmod 700 get_helm.sh
$ ./get_helm.sh

或者直接執行:

curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

透過包管理器安裝

  1. 使用Homebrew (macOS): brew install helm

  2. 使用Chocolatey (Windows): choco install kubernetes-helm

  3. 使用Scoop (Windows): scoop install helm

  4. 使用Winget (Windows): winget install Helm.Helm

  5. 使用Apt (Debian/Ubuntu):

curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
sudo apt-get install apt-transport-https --yes
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm
  1. 使用 dnf/yum (fedora):

sudo dnf install helm

  1. 使用snap:

sudo snap install helm --classic

除此之外,還有更多的安裝方式,詳細請參考官方文件:https://helm.sh/zh/docs/intro/install/

2. 配置helm倉庫

新增倉庫

helm repo add bitnami "https://helm-charts.itboon.top/bitnami" --force-update
helm repo add grafana "https://helm-charts.itboon.top/grafana" --force-update
helm repo add prometheus-community "https://helm-charts.itboon.top/prometheus-community" --force-update
helm repo add ingress-nginx "https://helm-charts.itboon.top/ingress-nginx" --force-update
helm repo update

測試

helm repo add bitnami "https://helm-charts.itboon.top/bitnami" --force-update
helm repo update bitnami
helm template nginx bitnami/nginx

部署應用

## 部署 nginx
helm upgrade --install nginx \
  --namespace chart-demo \
  --create-namespace \
  bitnami/nginx

## 部署 redis
helm upgrade --install redis \
  --namespace chart-demo \
  --create-namespace \
  --set master.persistence.enabled="false" \
  --set replica.replicaCount="1" \
  --set replica.persistence.enabled="false" \
  bitnami/redis

相關文章