Skip to content

Commit b386a31

Browse files
authored
Merge pull request #20326 from rmohta/patch-1
Moved Desired and Current headers to rs section
2 parents c7f01db + 9ff3899 commit b386a31

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,8 @@ In this example:
8989
```
9090
When you inspect the Deployments in your cluster, the following fields are displayed:
9191

92-
* `NAME` lists the names of the Deployments in the cluster.
93-
* `DESIRED` displays the desired number of _replicas_ of the application, which you define when you create the Deployment. This is the _desired state_.
94-
* `CURRENT` displays how many replicas are currently running.
92+
* `NAME` lists the names of the Deployments in the namespace.
93+
* `READY` displays how many replicas of the application are available to your users. It follows the pattern ready/desired.
9594
* `UP-TO-DATE` displays the number of replicas that have been updated to achieve the desired state.
9695
* `AVAILABLE` displays how many replicas of the application are available to your users.
9796
* `AGE` displays the amount of time that the application has been running.
@@ -116,6 +115,14 @@ In this example:
116115
NAME DESIRED CURRENT READY AGE
117116
nginx-deployment-75675f5897 3 3 3 18s
118117
```
118+
ReplicaSet output shows the following fields:
119+
120+
* `NAME` lists the names of the ReplicaSets in the namespace.
121+
* `DESIRED` displays the desired number of _replicas_ of the application, which you define when you create the Deployment. This is the _desired state_.
122+
* `CURRENT` displays how many replicas are currently running.
123+
* `READY` displays how many replicas of the application are available to your users.
124+
* `AGE` displays the amount of time that the application has been running.
125+
119126
Notice that the name of the ReplicaSet is always formatted as `[DEPLOYMENT-NAME]-[RANDOM-STRING]`. The random string is
120127
randomly generated and uses the pod-template-hash as a seed.
121128

0 commit comments

Comments
 (0)