Fixed missing space (#14082)

pull/14106/head
Vladimir Masarik 2019-04-30 10:07:37 +02:00 committed by Kubernetes Prow Robot
parent 7212523448
commit 7e4657f6d3
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ Once Pod is assigned to a node by scheduler, kubelet starts creating containers
... ...
``` ```
* `Terminated`: Indicates that the container completed its execution and has stopped running.A container enters into this when it has successfully completed execution or when it has failed for some reason. Regardless, a reason and exit code is displayed, as well as the container's start and finish time. Before a container enters into Terminated, `preStop` hook (if any) is executed. * `Terminated`: Indicates that the container completed its execution and has stopped running. A container enters into this when it has successfully completed execution or when it has failed for some reason. Regardless, a reason and exit code is displayed, as well as the container's start and finish time. Before a container enters into Terminated, `preStop` hook (if any) is executed.
```yaml ```yaml
... ...