UNPKG

@jkcfg/kubernetes

Version:
62 lines 1.81 kB
{ "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", "required": [ "replicas" ], "properties": { "availableReplicas": { "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", "type": [ "integer", "null" ], "format": "int32" }, "conditions": { "description": "Represents the latest available observations of a replica set's current state.", "type": [ "array", "null" ], "items": { "$ref": "_definitions.json#/definitions/io.k8s.api.apps.v1beta2.ReplicaSetCondition" }, "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 replicaset.", "type": [ "integer", "null" ], "format": "int32" }, "observedGeneration": { "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", "type": [ "integer", "null" ], "format": "int64" }, "readyReplicas": { "description": "The number of ready replicas for this replica set.", "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" }