replicationController -> ReplicaSet (#12487)

Proposing replacing `replicationController` with `ReplicaSet` here since ["ReplicaSet is the next-generation Replication Controller."](https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/).
pull/12079/head^2
Scott Brenner 2019-02-04 15:25:03 -08:00 committed by Kubernetes Prow Robot
parent 661a6db061
commit d04d15f506
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ If running a queue service or modifying your containers to use a work queue is i
want to consider one of the other [job patterns](/docs/concepts/jobs/run-to-completion-finite-workloads/#job-patterns).
If you have a continuous stream of background processing work to run, then
consider running your background workers with a `replicationController` instead,
consider running your background workers with a `ReplicaSet` instead,
and consider running a background processing library such as
[https://github.com/resque/resque](https://github.com/resque/resque).