@jkcfg/kubernetes
Version:
jk Kubernetes library
45 lines • 1.53 kB
JSON
{
"$schema": "http://json-schema.org/schema#",
"required": [
"replicas"
],
"type": "object",
"description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
"properties": {
"replicas": {
"type": "integer",
"description": "Replicas is the most recently oberved number of replicas. More info: http://kubernetes.io/docs/user-guide/replication-controller#what-is-a-replication-controller",
"format": "int32"
},
"observedGeneration": {
"type": "integer",
"description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
"format": "int64"
},
"availableReplicas": {
"type": "integer",
"description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
"format": "int32"
},
"readyReplicas": {
"type": "integer",
"description": "The number of ready replicas for this replica set.",
"format": "int32"
},
"conditions": {
"items": {
"$ref": "_definitions.json#/definitions/v1beta1.ReplicaSetCondition"
},
"type": [
"array",
"null"
],
"description": "Represents the latest available observations of a replica set's current state."
},
"fullyLabeledReplicas": {
"type": "integer",
"description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
"format": "int32"
}
}
}