Reword glossary entry (#18046)
- Use API resource name for clarity - Mark as deprecatedpull/19854/head
parent
1abc479daf
commit
dec978178a
|
@ -1,19 +1,25 @@
|
||||||
---
|
---
|
||||||
title: Replication Controller
|
title: ReplicationController
|
||||||
id: replication-controller
|
id: replication-controller
|
||||||
date: 2018-04-12
|
date: 2018-04-12
|
||||||
full_link:
|
full_link:
|
||||||
short_description: >
|
short_description: >
|
||||||
Kubernetes service that ensures a specific number of instances of a pod are always running.
|
A (deprecated) API object that manages a replicated application.
|
||||||
|
|
||||||
aka:
|
aka:
|
||||||
tags:
|
tags:
|
||||||
- workload
|
- workload
|
||||||
- core-object
|
- core-object
|
||||||
---
|
---
|
||||||
Kubernetes service that ensures a specific number of instances of a {{< glossary_tooltip text="Pod" term_id="pod" >}} are always running.
|
A workload resource that manages a replicated application, ensuring that
|
||||||
|
a specific number of instances of a {{< glossary_tooltip text="Pod" term_id="pod" >}} are running.
|
||||||
|
|
||||||
<!--more-->
|
<!--more-->
|
||||||
|
|
||||||
Will automatically add or remove running instances of a pod, based on a set value for that pod. Allows the pod to return to the defined number of instances if pods are deleted or if too many are started by mistake.
|
The control plane ensures that the defined number of Pods are running, even if some
|
||||||
|
Pods fail, if you delete Pods manually, or if too many are started by mistake.
|
||||||
|
|
||||||
|
{{< note >}}
|
||||||
|
ReplicationController is deprecated. See
|
||||||
|
{{< glossary_tooltip text="Deployment" term_id="deployment" >}}, which is similar.
|
||||||
|
{{< /note >}}
|
||||||
|
|
Loading…
Reference in New Issue