translate example list

This commit is contained in:
郭旭东
2019-05-21 15:26:49 +08:00
parent 72f565d55d
commit b4efc833c7
2 changed files with 45 additions and 0 deletions

43
examples/README-CN.md Normal file
View File

@@ -0,0 +1,43 @@
# 示例
这些示例默认 `kustomize` 在您的 `$PATH` 中。
这些示例通过了 [pre-commit](../bin/pre-commit.sh) 测试,并且应该与 HEAD 一起使用。
<!-- @installkustomize @test -->
```
go get sigs.k8s.io/kustomize
```
* [hello world](helloWorld/README.md) - 部署多个配置不同的 Hello World 服务。
* [last mile helm](chart.md) - 对 helm chart 进行 last mile 修改。
* [LDAP](ldap/README.md) - 部署多个配置不同的 LDAP 服务。
* [mySql](mySql/README.md) - 从头开始创建一个 MySQL 的生产配置。
* [springboot](springboot/README.md) - 从头开始创建一个 Spring Boot 项目的生产配置。
* [combineConfigs](combineConfigs.md) -
混合来自不同用户的配置数据(例如来自 devops/SRE 和 developers
* [configGenerations](configGeneration.md) - 当 ConfigMapGenerator 修改时进行滚动更新。
* [secret generation](kvSourceGoPlugin.md) - 生成 Secret。
* [generatorOptions](generatorOptions.md) -修改所有 ConfigMapGenerator 和 SecretGenerator 的行为。
* [breakfast](breakfast.md) - 给 Alice 和 Bob 定制一顿早餐 :)
* [vars](wordpress/README.md) - 通过 vars 将 k8s 运行时数据注入容器参数(例如,为 wordpress 指定 SQL 服务)。
* [image names and tags](image.md) - 在不使用 patch 的情况下更新镜像名称和标签。
* [multibases](multibases/README.md) - 使用相同的 base 生成三个 variantsdevstagingproduction
* [remote target](remoteBuild.md) - 通过 github URL 来构建 kustomization 。
* [json patch](jsonpatch.md) -在 kustomization 中应用 json patch 。
* [transformer configs](transformerconfigs/README.md) - 自定义 transformer 配置。

View File

@@ -1,3 +1,5 @@
English | [简体中文](README-CN.md)
# Examples
These examples assume that `kustomize` is on your `$PATH`.