helmfile/README-zh_CN.md

5.2 KiB
Raw Permalink Blame History

Helmfile

Tests Container Image Repository on GHCR Go Report Card Slack Community #helmfile Documentation Gurubase zread

声明式Helm Chart管理工具

English | [简体中文]

关于

Helmfile 是一个声明式Helm Chart管理工具

Helmfile 项目已经从原仓库 roboll/helmfile 转移到了 helmfile/helmfile。有关更多信息请参见 roboll/helmfile#1824

特性

  • 通过一个YAML集中管理集群中多个Helm Chart 类似于Docker Compose统一管理Docker
  • 对Helm Chart根据部署环境区分管理
  • Helm Chart版本控制比如指定版本范围、锁定某一版本
  • 快速识别 Kubernetes 集群内已经部署应用与新更改之间的差异
  • Helmfile支持Go Templates语法定义Helm Chart
  • 在部署阶段支持配置hook可以执行脚本等实现变量远程获取报错清理成功提醒等

安装

方式1: 二进制安装

下载 releases

方式2: 包管理工具

  • Archlinux: pacman -S helmfile
  • openSUSE: zypper in helmfile
  • Windows: (scoop): scoop install helmfile
  • macOS (homebrew): brew install helmfile

方式3: 容器

详细见:run as a container

安装后请运行一次 helmfile init。 检查helm-diff 等插件安装正确。

使用

让我们从最简单的 helmfile 开始,逐渐改进它以适应您的用例!

假设表示您 helm releases 的期望状态的 helmfile.yaml 看起来像这样:

repositories:
- name: prometheus-community
  url: https://prometheus-community.github.io/helm-charts

releases:
- name: prom-norbac-ubuntu
  namespace: prometheus
  chart: prometheus-community/prometheus
  set:
  - name: rbac.create
    value: false

通过运行来同步您的Kubernetes集群状态到期望状态:

helmfile apply

恭喜您现在已经在集群内部运行了第一个Prometheus部署。

文档

Documentation

参与贡献

欢迎贡献! 让我们一起使helmfile变得更好贡献指南

使用者

Helmfile 已经被许多用户在生产环境中使用:

更多用户请参见: Users

License

MIT

Star History

Star History Chart