add FullyLabeledReplicas in Replicaset Status and ReplicationController Status

This commit is contained in:
Chao Xu
2016-03-11 10:34:13 -08:00
parent 0787b313eb
commit a6240c1ab8
31 changed files with 510 additions and 181 deletions

View File

@@ -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",

View File

@@ -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",