Files
2020-08-22 19:10:19 +08:00

42 lines
1.2 KiB
Markdown

---
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
full_link:
short_description: >
One or more initialization containers that must run to completion before any app containers run.
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)容器开始前运行完成。