Added glossary definition for init container. (#7458)

* Added glossary definition for init container.

* Edits for clarity
This commit is contained in:
Srini Brahmaroutu 2018-02-20 11:48:40 -08:00 committed by k8s-ci-robot
parent 5e0e6e9ee4
commit eb2a84f3e5
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
id: init-container
name: Init Container
tags:
- fundamental
short-description: >
One or more initialization containers that must run to completion before any app containers run.
long-description: >
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.