Files
Qiming Teng c52818c03d Switch language name 'zh' to 'zh-cn'
This is the first step to rename 'zh' to 'zh-cn'. There are several reasons why we rename the language name.

- The upstream docsy theme changed the language name, leading to many warnings during site build;
  The side-effect is that the i18n strings are no longer working.
- We believe renaming the language is the right thing to do, because this move can make room for other variants of Chinese language, such as 'zh-tw', 'zh-sg' etc.

There would be several follow-ups to this PR, such as fixing the intra-site links, adding redirects etc.

We will lock up changes to zh/zh-cn pages for the moment, until this one gets in.

This PR is based on commit cdad0a7342.
2022-06-10 22:33:41 +08:00

45 lines
1.3 KiB
Markdown

---
title: Helm Chart
id: helm-chart
date: 2018-04-12
full_link: https://github.com/kubernetes/helm/blob/master/docs/charts.md
short_description: >
Helm Chart 是一组预先配置的 Kubernetes 资源所构成的包,可以使用 Helm 工具对其进行管理。
aka:
tags:
- tool
---
<!--
---
title: Helm Chart
id: helm-chart
date: 2018-04-12
full_link: https://github.com/kubernetes/helm/blob/master/docs/charts.md
short_description: >
A package of pre-configured Kubernetes resources that can be managed with the Helm tool.
aka:
tags:
- tool
---
-->
<!--
A package of pre-configured Kubernetes resources that can be managed with the Helm tool.
-->
Helm Chart 是一组预先配置的 Kubernetes 资源所构成的包,可以使用 Helm 工具对其进行管理。
<!--more-->
<!--
Charts provide a reproducible way of creating and sharing Kubernetes applications.
A single chart can be used to deploy something simple, like a memcached Pod, or something complex, like a full web app stack with HTTP servers, databases, caches, and so on.
-->
Chart 提供了一种可重现的用来创建和共享 Kubernetes 应用的方法。
单个 Chart 可用来部署简单的系统(例如一个 memcached Pod),
也可以用来部署复杂的系统(例如包含 HTTP 服务器、数据库、缓存等组件的完整 Web 应用堆栈)。