forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreplicasetstatus-extensions-v1beta1.json
62 lines (62 loc) · 1.81 KB
/
replicasetstatus-extensions-v1beta1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.api.extensions.v1beta1.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"
}