From bc0f7dcd7c98ef18865ad511d91721e24cec93d5 Mon Sep 17 00:00:00 2001 From: peefy Date: Tue, 2 Jan 2024 18:48:21 +0800 Subject: [PATCH] docs: add helmfile in kubernetes configuration management blogs Signed-off-by: peefy --- .../index.md | 1 + .../index.md | 1 + 2 files changed, 2 insertions(+) diff --git a/blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md b/blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md index 5257f5cc..93480df4 100644 --- a/blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md +++ b/blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md @@ -55,6 +55,7 @@ The Templated KV has the capability of static configuration data and dynamic par Representative technologies of templated KV include: - [Helm](https://helm.sh/): The package management tool of Kubernetes resources, which manages the configuration of Kubernetes resources through the configuration template. +- [Helmfile](https://github.com/helmfile/helmfile): Helmfile is a declarative tool used to assist users in configuring and managing Helm charts running in Kubernetes clusters. Besides, Helmfile extends the functionality of Helm, making it easier and more repeatable to manage multiple Helm charts. - Other configuration templates: Java Velocity, Go Template and other text template engines are very suitable for HTML writing templates. However,when used in configuration scenarios, they are difficult for developers and tools to maintain and analyze. ### Programmable Key-Value Pair diff --git a/i18n/zh-CN/docusaurus-plugin-content-blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md b/i18n/zh-CN/docusaurus-plugin-content-blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md index c2872b70..d4c5cc2f 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md +++ b/i18n/zh-CN/docusaurus-plugin-content-blog/2023-12-25-ten-ways-for-kubernetes-config-management/index.md @@ -59,6 +59,7 @@ Kubernetes 的声明式 API 通常是通过 YAML 或 JSON 格式的清单(Mani 模版化代表技术有: - [Helm](https://helm.sh/):Kubernetes 资源的包管理工具,通过配置模版管理 Kubernetes 资源配置。 +- [Helmfile](https://github.com/helmfile/helmfile):Helmfile 是一个声明式的工具,用于帮助用户配置和管理在 Kubernetes 集群中运行的 Helm 图表(charts)。此外,Helmfile 扩展了 Helm 的功能,使得管理多个 Helm 图表变得更加容易。 ### 代码化 (Programmable) 的 KV