哎!是 helm repo。
要使用这个 Helm 仓库,请先添加仓库到你的 Helm 客户端:
helm repo add alienfamilyhub https://alienfamilyhub.github.io/charts
helm repo update
helm search repo alienfamilyhub
以 hello-world chart 为例:
# 安装到默认命名空间
helm install my-hello-world alienfamilyhub/hello-world
# 安装到指定命名空间
helm install my-hello-world alienfamilyhub/hello-world -n my-namespace --create-namespace
# 使用自定义 values
helm install my-hello-world alienfamilyhub/hello-world -f my-values.yaml
# 安装指定版本
helm install my-hello-world alienfamilyhub/hello-world --version 0.1.0
helm upgrade my-hello-world alienfamilyhub/hello-world
helm uninstall my-hello-world
在仓库根目录下创建你的 chart:
helm create my-new-chart