https://artifacthub.io/

1 介绍1

Kubernetes的世界 Linux的世界
运行着的对象 容器 进程
运行态管理 helm3 移除了 tiller Systemd
安装包版本 Helm Chart Version RPM Version
安装包 Helm Chart RPM包
包管理工具 Helm Yum
安装包仓库 Helm Repository RPM Repositoy/Mirror
操作系统 Kubernetes Linux发行版

2 安装2

wget https://repo.huaweicloud.com/helm/v3.12.2/helm-v3.12.2-linux-amd64.tar.gz
test $(sha256sum helm-v3.12.2-linux-amd64.tar.gz  |awk '{print $1}') == "2b6efaa009891d3703869f4be80ab86faa33fa83d9d5ff2f6492a8aebe97b219" && echo "file is ok" || echo "file is not ok"
tar -zxvf helm-v3.12.2-linux-amd64.tar.gz  -C /usr/local/bin/ --strip-components=1 linux-amd64/helm

3 使用

# 显示安装的  -A 表示所有命名空间
helm list -A
helm uninstall xxx -n your-namespace

helm repo add nfs-subdir-external-provisioner https://kubernetes-sigs.github.io/nfs-subdir-external-provisioner/
helm repo list
Back to top