@@ -89,9 +89,8 @@ In this example:
89
89
` ` `
90
90
When you inspect the Deployments in your cluster, the following fields are displayed:
91
91
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.
95
94
* ` UP-TO-DATE` displays the number of replicas that have been updated to achieve the desired state.
96
95
* ` AVAILABLE` displays how many replicas of the application are available to your users.
97
96
* ` AGE` displays the amount of time that the application has been running.
@@ -116,6 +115,14 @@ In this example:
116
115
NAME DESIRED CURRENT READY AGE
117
116
nginx-deployment-75675f5897 3 3 3 18s
118
117
` ` `
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
+
119
126
Notice that the name of the ReplicaSet is always formatted as ` [DEPLOYMENT-NAME]-[RANDOM-STRING]` . The random string is
120
127
randomly generated and uses the pod-template-hash as a seed.
121
128
0 commit comments