File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
content/en/docs/concepts/workloads/controllers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ The following is an example of a Deployment. It creates a ReplicaSet to bring up
45
45
In this example:
46
46
47
47
* 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.
50
50
In this case, you select a label that is defined in the Pod template (` app: nginx ` ).
51
51
However, more sophisticated selection rules are possible,
52
52
as long as the Pod template itself satisfies the rule.
You can’t perform that action at this time.
0 commit comments