diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index b80ebdb4ad1..a73d19cb9d8 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -7877,7 +7877,8 @@ "id": "v1beta1.ReplicaSetStatus", "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", "required": [ - "replicas" + "replicas", + "fullyLabeledReplicas" ], "properties": { "replicas": { @@ -7885,6 +7886,11 @@ "format": "int32", "description": "Replicas is the most recently oberved number of replicas. More info: http://releases.k8s.io/HEAD/docs/user-guide/replication-controller.md#what-is-a-replication-controller" }, + "fullyLabeledReplicas": { + "type": "integer", + "format": "int32", + "description": "The number of pods that have labels matching the labels of the pod template of the replicaset." + }, "observedGeneration": { "type": "integer", "format": "int64", diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index d33a9c625a8..65b957d5a9b 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -17617,7 +17617,8 @@ "id": "v1.ReplicationControllerStatus", "description": "ReplicationControllerStatus represents the current status of a replication controller.", "required": [ - "replicas" + "replicas", + "fullyLabeledReplicas" ], "properties": { "replicas": { @@ -17625,6 +17626,11 @@ "format": "int32", "description": "Replicas is the most recently oberved number of replicas. More info: http://releases.k8s.io/HEAD/docs/user-guide/replication-controller.md#what-is-a-replication-controller" }, + "fullyLabeledReplicas": { + "type": "integer", + "format": "int32", + "description": "The number of pods that have labels matching the labels of the pod template of the replication controller." + }, "observedGeneration": { "type": "integer", "format": "int64", diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index af2eccc0b10..57f36177b96 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -4581,6 +4581,13 @@ Both these may change in the future. Incoming requests are matched against the h
fullyLabeledReplicas
The number of pods that have labels matching the labels of the pod template of the replicaset.
true
integer (int32)
observedGeneration
ObservedGeneration reflects the generation of the most recently observed ReplicaSet.
false