remove incomplete thought

This commit is contained in:
Mac Browning 2016-02-15 21:09:32 -05:00
parent f366baeaeb
commit 6ca03de351

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