zh-trans: add init-container.md (#11443)

zh-trans: add init-container.md
This commit is contained in:
AdamDang
2018-12-03 11:17:06 +08:00
committed by Kubernetes Prow Robot
parent 3ef791daab
commit a60038f02b
@@ -1,4 +1,18 @@
---
title: 初始化容器
id: init-container
date: 2018-04-12
full_link:
short_description: >
应用容器运行前必须先运行完成的一个或多个初始化容器。
aka:
tags:
- fundamental
---
<!--
---
title: Init Container
id: init-container
date: 2018-04-12
@@ -10,9 +24,18 @@ aka:
tags:
- fundamental
---
-->
<!--
One or more initialization containers that must run to completion before any app containers run.
-->
应用容器运行前必须先运行完成的一个或多个初始化容器。
<!--more-->
<!--
Initialization (init) containers are like regular app containers, with one difference: init containers must run to completion before any app containers can start. Init containers run in series: each init container must run to completion before the next init container begins.
-->
初始化(init)容器像常规应用容器一样,只有一点不同:初始化(init)容器必须在应用容器启动前运行完成。Init 容器的运行顺序:一个初始化(init)容器必须在下一个初始化(init)容器开始前运行完成。