Merge pull request #21287 from macb/docs/remove_incomplete_sentence

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot 2016-02-16 08:55:05 -08:00
commit f37472fb4d

View File

@ -85,7 +85,7 @@ Three types of controllers are currently available:
- Use a [`Job`](jobs.md) for pods which are expected to terminate (e.g. batch computations).
- Use a [`ReplicationController`](replication-controller.md) for pods which are not expected to
terminate, and where (e.g. web servers).
terminate (e.g. web servers).
- Use a [`DaemonSet`](../admin/daemons.md): Use for pods which need to run 1 per machine because they provide a
machine-specific system service.
If you are unsure whether to use ReplicationController or Daemon, then see [Daemon Set versus