You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
APIVersion defines the versioned schema of this representation of an object.
35
-
Servers should convert recognized schemas to the latest internal value, and
36
-
may reject unrecognized values.
37
-
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
45
+
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
38
46
type: string
39
47
kind:
40
-
description: |-
41
-
Kind is a string value representing the REST resource this object represents.
42
-
Servers may infer this from the endpoint the client submits requests to.
43
-
Cannot be updated.
44
-
In CamelCase.
45
-
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
48
+
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
46
49
type: string
47
50
metadata:
48
51
type: object
@@ -97,10 +100,63 @@ spec:
97
100
type: array
98
101
items:
99
102
type: string
103
+
status:
104
+
type: object
105
+
properties:
106
+
availableReplicas:
107
+
type: integer
108
+
format: int32
109
+
conditions:
110
+
description: Conditions contains observations of the resource's state.
111
+
type: array
112
+
items:
113
+
description: "Condition contains details for one aspect of the current state of this API Resource. --- This struct is intended for direct use as an array at the field path .status.conditions. For example, \n type FooStatus struct{ // Represents the observations of a foo's current state. // Known .status.conditions.type are: \"Available\", \"Progressing\", and \"Degraded\" // +patchMergeKey=type // +patchStrategy=merge // +listType=map // +listMapKey=type Conditions []metav1.Condition `json:\"conditions,omitempty\" patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"` \n // other fields }"
114
+
type: object
115
+
required:
116
+
- lastTransitionTime
117
+
- message
118
+
- reason
119
+
- status
120
+
- type
121
+
properties:
122
+
lastTransitionTime:
123
+
description: lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
124
+
type: string
125
+
format: date-time
126
+
message:
127
+
description: message is a human readable message indicating details about the transition. This may be an empty string.
128
+
type: string
129
+
maxLength: 32768
130
+
observedGeneration:
131
+
description: observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
132
+
type: integer
133
+
format: int64
134
+
minimum: 0
135
+
reason:
136
+
description: reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
137
+
type: string
138
+
maxLength: 1024
139
+
minLength: 1
140
+
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
141
+
status:
142
+
description: status of the condition, one of True, False, Unknown.
143
+
type: string
144
+
enum:
145
+
- "True"
146
+
- "False"
147
+
- Unknown
148
+
type:
149
+
description: type of condition in CamelCase or in foo.example.com/CamelCase. --- Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to deconflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
0 commit comments