@jkcfg/kubernetes
Version:
jk Kubernetes library
62 lines • 1.89 kB
JSON
{
"description": "ReplicationControllerStatus represents the current status of a replication controller.",
"required": [
"replicas"
],
"properties": {
"availableReplicas": {
"description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
"type": [
"integer",
"null"
],
"format": "int32"
},
"conditions": {
"description": "Represents the latest available observations of a replication controller's current state.",
"type": [
"array",
"null"
],
"items": {
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.ReplicationControllerCondition"
},
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"fullyLabeledReplicas": {
"description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
"type": [
"integer",
"null"
],
"format": "int32"
},
"observedGeneration": {
"description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
"type": [
"integer",
"null"
],
"format": "int64"
},
"readyReplicas": {
"description": "The number of ready replicas for this replication controller.",
"type": [
"integer",
"null"
],
"format": "int32"
},
"replicas": {
"description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
"type": [
"integer",
"null"
],
"format": "int32"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}