Skip to content

Commit ce67f9d

Browse files
authored
Merge pull request #38056 from pieterdd/patch-1
Clarify that a Deployment doesn't manage Pods
2 parents 5d458f9 + 01762ba commit ce67f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/concepts/workloads/controllers/deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ The following is an example of a Deployment. It creates a ReplicaSet to bring up
4545
In this example:
4646

4747
* A Deployment named `nginx-deployment` is created, indicated by the `.metadata.name` field.
48-
* The Deployment creates three replicated Pods, indicated by the `.spec.replicas` field.
49-
* The `.spec.selector` field defines how the Deployment finds which Pods to manage.
48+
* The Deployment creates a ReplicaSet that creates three replicated Pods, indicated by the `.spec.replicas` field.
49+
* The `.spec.selector` field defines how the created ReplicaSet finds which Pods to manage.
5050
In this case, you select a label that is defined in the Pod template (`app: nginx`).
5151
However, more sophisticated selection rules are possible,
5252
as long as the Pod template itself satisfies the rule.

0 commit comments

Comments
 (0)