add three punctuations (#4539)

* add two punctuation

add two punctuation

* add one more
pull/4552/head
Xiaoyu Zhang 2017-08-01 08:20:19 +08:00 committed by Andrew Chen
parent d5595d133f
commit aaa7e8a948
1 changed files with 3 additions and 3 deletions

View File

@ -110,12 +110,12 @@ There are three main types of jobs:
- normally only one pod is started, unless the pod fails.
- job is complete as soon as Pod terminates successfully.
1. Parallel Jobs with a *fixed completion count*:
- specify a non-zero positive value for `.spec.completions`
- specify a non-zero positive value for `.spec.completions`.
- the job is complete when there is one successful pod for each value in the range 1 to `.spec.completions`.
- **not implemented yet:** each pod passed a different index in the range 1 to `.spec.completions`.
1. Parallel Jobs with a *work queue*:
- do not specify `.spec.completions`, default to `.spec.Parallelism`
- the pods must coordinate with themselves or an external service to determine what each should work on
 - do not specify `.spec.completions`, default to `.spec.Parallelism`.
 - the pods must coordinate with themselves or an external service to determine what each should work on.
- each pod is independently capable of determining whether or not all its peers are done, thus the entire Job is done.
- when _any_ pod terminates with success, no new pods are created.
- once at least one pod has terminated with success and all pods are terminated, then the job is completed with success.