@kubernetes-typescript/kubernetes 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.d.ts.map +1 -0
- package/dist/models/index.js +2 -0
- package/dist/models/index.js.map +1 -0
- package/dist/resources/index.d.ts +2 -0
- package/dist/resources/index.d.ts.map +1 -0
- package/dist/resources/index.js +2 -0
- package/dist/resources/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/v1.33/index.d.ts +218 -0
- package/dist/v1.33/index.d.ts.map +1 -0
- package/dist/v1.33/index.js +212 -0
- package/dist/v1.33/index.js.map +1 -0
- package/dist/v1.33/models/index.d.ts +4296 -0
- package/dist/v1.33/models/index.d.ts.map +1 -0
- package/dist/v1.33/models/index.js +2 -0
- package/dist/v1.33/models/index.js.map +1 -0
- package/dist/v1.33/resources/index.d.ts +194 -0
- package/dist/v1.33/resources/index.d.ts.map +1 -0
- package/dist/v1.33/resources/index.js +895 -0
- package/dist/v1.33/resources/index.js.map +1 -0
- package/dist/v1.34/index.d.ts +222 -0
- package/dist/v1.34/index.d.ts.map +1 -0
- package/dist/v1.34/index.js +216 -0
- package/dist/v1.34/index.js.map +1 -0
- package/dist/v1.34/models/index.d.ts +4464 -0
- package/dist/v1.34/models/index.d.ts.map +1 -0
- package/dist/v1.34/models/index.js +2 -0
- package/dist/v1.34/models/index.js.map +1 -0
- package/dist/v1.34/resources/index.d.ts +196 -0
- package/dist/v1.34/resources/index.d.ts.map +1 -0
- package/dist/v1.34/resources/index.js +909 -0
- package/dist/v1.34/resources/index.js.map +1 -0
- package/dist/v1.35/index.d.ts +222 -0
- package/dist/v1.35/index.d.ts.map +1 -0
- package/dist/v1.35/index.js +216 -0
- package/dist/v1.35/index.js.map +1 -0
- package/dist/v1.35/models/index.d.ts +4487 -0
- package/dist/v1.35/models/index.d.ts.map +1 -0
- package/dist/v1.35/models/index.js +2 -0
- package/dist/v1.35/models/index.js.map +1 -0
- package/dist/v1.35/resources/index.d.ts +199 -0
- package/dist/v1.35/resources/index.d.ts.map +1 -0
- package/dist/v1.35/resources/index.js +917 -0
- package/dist/v1.35/resources/index.js.map +1 -0
- package/package.json +70 -0
|
@@ -0,0 +1,4464 @@
|
|
|
1
|
+
export interface Info {
|
|
2
|
+
buildDate: string;
|
|
3
|
+
compiler: string;
|
|
4
|
+
emulationMajor?: string;
|
|
5
|
+
emulationMinor?: string;
|
|
6
|
+
gitCommit: string;
|
|
7
|
+
gitTreeState: string;
|
|
8
|
+
gitVersion: string;
|
|
9
|
+
goVersion: string;
|
|
10
|
+
major: string;
|
|
11
|
+
minCompatibilityMajor?: string;
|
|
12
|
+
minCompatibilityMinor?: string;
|
|
13
|
+
minor: string;
|
|
14
|
+
platform: string;
|
|
15
|
+
}
|
|
16
|
+
export interface IntOrString {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}
|
|
19
|
+
export interface Quantity {
|
|
20
|
+
[key: string]: unknown;
|
|
21
|
+
}
|
|
22
|
+
export interface RawExtension {
|
|
23
|
+
[key: string]: unknown;
|
|
24
|
+
}
|
|
25
|
+
export interface V1AdmissionregistrationServiceReference {
|
|
26
|
+
name: string;
|
|
27
|
+
namespace: string;
|
|
28
|
+
path?: string;
|
|
29
|
+
port?: number;
|
|
30
|
+
}
|
|
31
|
+
export interface V1AdmissionregistrationWebhookClientConfig {
|
|
32
|
+
caBundle?: string;
|
|
33
|
+
service?: V1AdmissionregistrationServiceReference;
|
|
34
|
+
url?: string;
|
|
35
|
+
}
|
|
36
|
+
export interface V1Affinity {
|
|
37
|
+
nodeAffinity?: V1NodeAffinity;
|
|
38
|
+
podAffinity?: V1PodAffinity;
|
|
39
|
+
podAntiAffinity?: V1PodAntiAffinity;
|
|
40
|
+
}
|
|
41
|
+
export interface V1AggregationRule {
|
|
42
|
+
clusterRoleSelectors?: V1LabelSelector[];
|
|
43
|
+
}
|
|
44
|
+
export interface V1AllocatedDeviceStatus {
|
|
45
|
+
conditions?: V1Condition[];
|
|
46
|
+
data?: RawExtension;
|
|
47
|
+
device: string;
|
|
48
|
+
driver: string;
|
|
49
|
+
networkData?: V1NetworkDeviceData;
|
|
50
|
+
pool: string;
|
|
51
|
+
shareID?: string;
|
|
52
|
+
}
|
|
53
|
+
export interface V1AllocationResult {
|
|
54
|
+
allocationTimestamp?: V1Time;
|
|
55
|
+
devices?: V1DeviceAllocationResult;
|
|
56
|
+
nodeSelector?: V1NodeSelector;
|
|
57
|
+
}
|
|
58
|
+
export interface V1alpha1ApplyConfiguration {
|
|
59
|
+
expression?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface V1alpha1ClusterTrustBundle {
|
|
62
|
+
apiVersion?: string;
|
|
63
|
+
kind?: string;
|
|
64
|
+
metadata?: V1ObjectMeta;
|
|
65
|
+
spec: V1alpha1ClusterTrustBundleSpec;
|
|
66
|
+
}
|
|
67
|
+
export interface V1alpha1ClusterTrustBundleList {
|
|
68
|
+
apiVersion?: string;
|
|
69
|
+
items: V1alpha1ClusterTrustBundle[];
|
|
70
|
+
kind?: string;
|
|
71
|
+
metadata?: V1ListMeta;
|
|
72
|
+
}
|
|
73
|
+
export interface V1alpha1ClusterTrustBundleSpec {
|
|
74
|
+
signerName?: string;
|
|
75
|
+
trustBundle: string;
|
|
76
|
+
}
|
|
77
|
+
export interface V1alpha1GroupVersionResource {
|
|
78
|
+
group?: string;
|
|
79
|
+
resource?: string;
|
|
80
|
+
version?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface V1alpha1JSONPatch {
|
|
83
|
+
expression?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface V1alpha1MatchCondition {
|
|
86
|
+
expression: string;
|
|
87
|
+
name: string;
|
|
88
|
+
}
|
|
89
|
+
export interface V1alpha1MatchResources {
|
|
90
|
+
excludeResourceRules?: V1alpha1NamedRuleWithOperations[];
|
|
91
|
+
matchPolicy?: string;
|
|
92
|
+
namespaceSelector?: V1LabelSelector;
|
|
93
|
+
objectSelector?: V1LabelSelector;
|
|
94
|
+
resourceRules?: V1alpha1NamedRuleWithOperations[];
|
|
95
|
+
}
|
|
96
|
+
export interface V1alpha1MigrationCondition {
|
|
97
|
+
lastUpdateTime?: V1Time;
|
|
98
|
+
message?: string;
|
|
99
|
+
reason?: string;
|
|
100
|
+
status: string;
|
|
101
|
+
type: string;
|
|
102
|
+
}
|
|
103
|
+
export interface V1alpha1MutatingAdmissionPolicy {
|
|
104
|
+
apiVersion?: string;
|
|
105
|
+
kind?: string;
|
|
106
|
+
metadata?: V1ObjectMeta;
|
|
107
|
+
spec?: V1alpha1MutatingAdmissionPolicySpec;
|
|
108
|
+
}
|
|
109
|
+
export interface V1alpha1MutatingAdmissionPolicyBinding {
|
|
110
|
+
apiVersion?: string;
|
|
111
|
+
kind?: string;
|
|
112
|
+
metadata?: V1ObjectMeta;
|
|
113
|
+
spec?: V1alpha1MutatingAdmissionPolicyBindingSpec;
|
|
114
|
+
}
|
|
115
|
+
export interface V1alpha1MutatingAdmissionPolicyBindingList {
|
|
116
|
+
apiVersion?: string;
|
|
117
|
+
items: V1alpha1MutatingAdmissionPolicyBinding[];
|
|
118
|
+
kind?: string;
|
|
119
|
+
metadata?: V1ListMeta;
|
|
120
|
+
}
|
|
121
|
+
export interface V1alpha1MutatingAdmissionPolicyBindingSpec {
|
|
122
|
+
matchResources?: V1alpha1MatchResources;
|
|
123
|
+
paramRef?: V1alpha1ParamRef;
|
|
124
|
+
policyName?: string;
|
|
125
|
+
}
|
|
126
|
+
export interface V1alpha1MutatingAdmissionPolicyList {
|
|
127
|
+
apiVersion?: string;
|
|
128
|
+
items: V1alpha1MutatingAdmissionPolicy[];
|
|
129
|
+
kind?: string;
|
|
130
|
+
metadata?: V1ListMeta;
|
|
131
|
+
}
|
|
132
|
+
export interface V1alpha1MutatingAdmissionPolicySpec {
|
|
133
|
+
failurePolicy?: string;
|
|
134
|
+
matchConditions?: V1alpha1MatchCondition[];
|
|
135
|
+
matchConstraints?: V1alpha1MatchResources;
|
|
136
|
+
mutations?: V1alpha1Mutation[];
|
|
137
|
+
paramKind?: V1alpha1ParamKind;
|
|
138
|
+
reinvocationPolicy?: string;
|
|
139
|
+
variables?: V1alpha1Variable[];
|
|
140
|
+
}
|
|
141
|
+
export interface V1alpha1Mutation {
|
|
142
|
+
applyConfiguration?: V1alpha1ApplyConfiguration;
|
|
143
|
+
jsonPatch?: V1alpha1JSONPatch;
|
|
144
|
+
patchType: string;
|
|
145
|
+
}
|
|
146
|
+
export interface V1alpha1NamedRuleWithOperations {
|
|
147
|
+
apiGroups?: string[];
|
|
148
|
+
apiVersions?: string[];
|
|
149
|
+
operations?: string[];
|
|
150
|
+
resourceNames?: string[];
|
|
151
|
+
resources?: string[];
|
|
152
|
+
scope?: string;
|
|
153
|
+
}
|
|
154
|
+
export interface V1alpha1ParamKind {
|
|
155
|
+
apiVersion?: string;
|
|
156
|
+
kind?: string;
|
|
157
|
+
}
|
|
158
|
+
export interface V1alpha1ParamRef {
|
|
159
|
+
name?: string;
|
|
160
|
+
namespace?: string;
|
|
161
|
+
parameterNotFoundAction?: string;
|
|
162
|
+
selector?: V1LabelSelector;
|
|
163
|
+
}
|
|
164
|
+
export interface V1alpha1PodCertificateRequest {
|
|
165
|
+
apiVersion?: string;
|
|
166
|
+
kind?: string;
|
|
167
|
+
metadata?: V1ObjectMeta;
|
|
168
|
+
spec: V1alpha1PodCertificateRequestSpec;
|
|
169
|
+
status?: V1alpha1PodCertificateRequestStatus;
|
|
170
|
+
}
|
|
171
|
+
export interface V1alpha1PodCertificateRequestList {
|
|
172
|
+
apiVersion?: string;
|
|
173
|
+
items: V1alpha1PodCertificateRequest[];
|
|
174
|
+
kind?: string;
|
|
175
|
+
metadata?: V1ListMeta;
|
|
176
|
+
}
|
|
177
|
+
export interface V1alpha1PodCertificateRequestSpec {
|
|
178
|
+
maxExpirationSeconds?: number;
|
|
179
|
+
nodeName: string;
|
|
180
|
+
nodeUID: string;
|
|
181
|
+
pkixPublicKey: string;
|
|
182
|
+
podName: string;
|
|
183
|
+
podUID: string;
|
|
184
|
+
proofOfPossession: string;
|
|
185
|
+
serviceAccountName: string;
|
|
186
|
+
serviceAccountUID: string;
|
|
187
|
+
signerName: string;
|
|
188
|
+
}
|
|
189
|
+
export interface V1alpha1PodCertificateRequestStatus {
|
|
190
|
+
beginRefreshAt?: V1Time;
|
|
191
|
+
certificateChain?: string;
|
|
192
|
+
conditions?: V1Condition[];
|
|
193
|
+
notAfter?: V1Time;
|
|
194
|
+
notBefore?: V1Time;
|
|
195
|
+
}
|
|
196
|
+
export interface V1alpha1ServerStorageVersion {
|
|
197
|
+
apiServerID?: string;
|
|
198
|
+
decodableVersions?: string[];
|
|
199
|
+
encodingVersion?: string;
|
|
200
|
+
servedVersions?: string[];
|
|
201
|
+
}
|
|
202
|
+
export interface V1alpha1StorageVersion {
|
|
203
|
+
apiVersion?: string;
|
|
204
|
+
kind?: string;
|
|
205
|
+
metadata?: V1ObjectMeta;
|
|
206
|
+
spec: V1alpha1StorageVersionSpec;
|
|
207
|
+
status: V1alpha1StorageVersionStatus;
|
|
208
|
+
}
|
|
209
|
+
export interface V1alpha1StorageVersionCondition {
|
|
210
|
+
lastTransitionTime?: V1Time;
|
|
211
|
+
message: string;
|
|
212
|
+
observedGeneration?: number;
|
|
213
|
+
reason: string;
|
|
214
|
+
status: string;
|
|
215
|
+
type: string;
|
|
216
|
+
}
|
|
217
|
+
export interface V1alpha1StorageVersionList {
|
|
218
|
+
apiVersion?: string;
|
|
219
|
+
items: V1alpha1StorageVersion[];
|
|
220
|
+
kind?: string;
|
|
221
|
+
metadata?: V1ListMeta;
|
|
222
|
+
}
|
|
223
|
+
export interface V1alpha1StorageVersionMigration {
|
|
224
|
+
apiVersion?: string;
|
|
225
|
+
kind?: string;
|
|
226
|
+
metadata?: V1ObjectMeta;
|
|
227
|
+
spec?: V1alpha1StorageVersionMigrationSpec;
|
|
228
|
+
status?: V1alpha1StorageVersionMigrationStatus;
|
|
229
|
+
}
|
|
230
|
+
export interface V1alpha1StorageVersionMigrationList {
|
|
231
|
+
apiVersion?: string;
|
|
232
|
+
items: V1alpha1StorageVersionMigration[];
|
|
233
|
+
kind?: string;
|
|
234
|
+
metadata?: V1ListMeta;
|
|
235
|
+
}
|
|
236
|
+
export interface V1alpha1StorageVersionMigrationSpec {
|
|
237
|
+
continueToken?: string;
|
|
238
|
+
resource: V1alpha1GroupVersionResource;
|
|
239
|
+
}
|
|
240
|
+
export interface V1alpha1StorageVersionMigrationStatus {
|
|
241
|
+
conditions?: V1alpha1MigrationCondition[];
|
|
242
|
+
resourceVersion?: string;
|
|
243
|
+
}
|
|
244
|
+
export interface V1alpha1StorageVersionSpec {
|
|
245
|
+
[key: string]: unknown;
|
|
246
|
+
}
|
|
247
|
+
export interface V1alpha1StorageVersionStatus {
|
|
248
|
+
commonEncodingVersion?: string;
|
|
249
|
+
conditions?: V1alpha1StorageVersionCondition[];
|
|
250
|
+
storageVersions?: V1alpha1ServerStorageVersion[];
|
|
251
|
+
}
|
|
252
|
+
export interface V1alpha1Variable {
|
|
253
|
+
expression: string;
|
|
254
|
+
name: string;
|
|
255
|
+
}
|
|
256
|
+
export interface V1alpha1VolumeAttributesClass {
|
|
257
|
+
apiVersion?: string;
|
|
258
|
+
driverName: string;
|
|
259
|
+
kind?: string;
|
|
260
|
+
metadata?: V1ObjectMeta;
|
|
261
|
+
parameters?: Record<string, string>;
|
|
262
|
+
}
|
|
263
|
+
export interface V1alpha1VolumeAttributesClassList {
|
|
264
|
+
apiVersion?: string;
|
|
265
|
+
items: V1alpha1VolumeAttributesClass[];
|
|
266
|
+
kind?: string;
|
|
267
|
+
metadata?: V1ListMeta;
|
|
268
|
+
}
|
|
269
|
+
export interface V1alpha2LeaseCandidate {
|
|
270
|
+
apiVersion?: string;
|
|
271
|
+
kind?: string;
|
|
272
|
+
metadata?: V1ObjectMeta;
|
|
273
|
+
spec?: V1alpha2LeaseCandidateSpec;
|
|
274
|
+
}
|
|
275
|
+
export interface V1alpha2LeaseCandidateList {
|
|
276
|
+
apiVersion?: string;
|
|
277
|
+
items: V1alpha2LeaseCandidate[];
|
|
278
|
+
kind?: string;
|
|
279
|
+
metadata?: V1ListMeta;
|
|
280
|
+
}
|
|
281
|
+
export interface V1alpha2LeaseCandidateSpec {
|
|
282
|
+
binaryVersion: string;
|
|
283
|
+
emulationVersion?: string;
|
|
284
|
+
leaseName: string;
|
|
285
|
+
pingTime?: V1MicroTime;
|
|
286
|
+
renewTime?: V1MicroTime;
|
|
287
|
+
strategy: string;
|
|
288
|
+
}
|
|
289
|
+
export interface V1alpha3CELDeviceSelector {
|
|
290
|
+
expression: string;
|
|
291
|
+
}
|
|
292
|
+
export interface V1alpha3DeviceSelector {
|
|
293
|
+
cel?: V1alpha3CELDeviceSelector;
|
|
294
|
+
}
|
|
295
|
+
export interface V1alpha3DeviceTaint {
|
|
296
|
+
effect: string;
|
|
297
|
+
key: string;
|
|
298
|
+
timeAdded?: V1Time;
|
|
299
|
+
value?: string;
|
|
300
|
+
}
|
|
301
|
+
export interface V1alpha3DeviceTaintRule {
|
|
302
|
+
apiVersion?: string;
|
|
303
|
+
kind?: string;
|
|
304
|
+
metadata?: V1ObjectMeta;
|
|
305
|
+
spec: V1alpha3DeviceTaintRuleSpec;
|
|
306
|
+
}
|
|
307
|
+
export interface V1alpha3DeviceTaintRuleList {
|
|
308
|
+
apiVersion?: string;
|
|
309
|
+
items: V1alpha3DeviceTaintRule[];
|
|
310
|
+
kind?: string;
|
|
311
|
+
metadata?: V1ListMeta;
|
|
312
|
+
}
|
|
313
|
+
export interface V1alpha3DeviceTaintRuleSpec {
|
|
314
|
+
deviceSelector?: V1alpha3DeviceTaintSelector;
|
|
315
|
+
taint: V1alpha3DeviceTaint;
|
|
316
|
+
}
|
|
317
|
+
export interface V1alpha3DeviceTaintSelector {
|
|
318
|
+
device?: string;
|
|
319
|
+
deviceClassName?: string;
|
|
320
|
+
driver?: string;
|
|
321
|
+
pool?: string;
|
|
322
|
+
selectors?: V1alpha3DeviceSelector[];
|
|
323
|
+
}
|
|
324
|
+
export interface V1ApiextensionsServiceReference {
|
|
325
|
+
name: string;
|
|
326
|
+
namespace: string;
|
|
327
|
+
path?: string;
|
|
328
|
+
port?: number;
|
|
329
|
+
}
|
|
330
|
+
export interface V1ApiextensionsWebhookClientConfig {
|
|
331
|
+
caBundle?: string;
|
|
332
|
+
service?: V1ApiextensionsServiceReference;
|
|
333
|
+
url?: string;
|
|
334
|
+
}
|
|
335
|
+
export interface V1APIGroup {
|
|
336
|
+
apiVersion?: string;
|
|
337
|
+
kind?: string;
|
|
338
|
+
name: string;
|
|
339
|
+
preferredVersion?: V1GroupVersionForDiscovery;
|
|
340
|
+
serverAddressByClientCIDRs?: V1ServerAddressByClientCIDR[];
|
|
341
|
+
versions: V1GroupVersionForDiscovery[];
|
|
342
|
+
}
|
|
343
|
+
export interface V1APIGroupList {
|
|
344
|
+
apiVersion?: string;
|
|
345
|
+
groups: V1APIGroup[];
|
|
346
|
+
kind?: string;
|
|
347
|
+
}
|
|
348
|
+
export interface V1ApiregistrationServiceReference {
|
|
349
|
+
name?: string;
|
|
350
|
+
namespace?: string;
|
|
351
|
+
port?: number;
|
|
352
|
+
}
|
|
353
|
+
export interface V1APIResource {
|
|
354
|
+
categories?: string[];
|
|
355
|
+
group?: string;
|
|
356
|
+
kind: string;
|
|
357
|
+
name: string;
|
|
358
|
+
namespaced: boolean;
|
|
359
|
+
shortNames?: string[];
|
|
360
|
+
singularName: string;
|
|
361
|
+
storageVersionHash?: string;
|
|
362
|
+
verbs: string[];
|
|
363
|
+
version?: string;
|
|
364
|
+
}
|
|
365
|
+
export interface V1APIResourceList {
|
|
366
|
+
apiVersion?: string;
|
|
367
|
+
groupVersion: string;
|
|
368
|
+
kind?: string;
|
|
369
|
+
resources: V1APIResource[];
|
|
370
|
+
}
|
|
371
|
+
export interface V1APIService {
|
|
372
|
+
apiVersion?: string;
|
|
373
|
+
kind?: string;
|
|
374
|
+
metadata?: V1ObjectMeta;
|
|
375
|
+
spec?: V1APIServiceSpec;
|
|
376
|
+
status?: V1APIServiceStatus;
|
|
377
|
+
}
|
|
378
|
+
export interface V1APIServiceCondition {
|
|
379
|
+
lastTransitionTime?: V1Time;
|
|
380
|
+
message?: string;
|
|
381
|
+
reason?: string;
|
|
382
|
+
status: string;
|
|
383
|
+
type: string;
|
|
384
|
+
}
|
|
385
|
+
export interface V1APIServiceList {
|
|
386
|
+
apiVersion?: string;
|
|
387
|
+
items: V1APIService[];
|
|
388
|
+
kind?: string;
|
|
389
|
+
metadata?: V1ListMeta;
|
|
390
|
+
}
|
|
391
|
+
export interface V1APIServiceSpec {
|
|
392
|
+
caBundle?: string;
|
|
393
|
+
group?: string;
|
|
394
|
+
groupPriorityMinimum: number;
|
|
395
|
+
insecureSkipTLSVerify?: boolean;
|
|
396
|
+
service?: V1ApiregistrationServiceReference;
|
|
397
|
+
version?: string;
|
|
398
|
+
versionPriority: number;
|
|
399
|
+
}
|
|
400
|
+
export interface V1APIServiceStatus {
|
|
401
|
+
conditions?: V1APIServiceCondition[];
|
|
402
|
+
}
|
|
403
|
+
export interface V1APIVersions {
|
|
404
|
+
apiVersion?: string;
|
|
405
|
+
kind?: string;
|
|
406
|
+
serverAddressByClientCIDRs: V1ServerAddressByClientCIDR[];
|
|
407
|
+
versions: string[];
|
|
408
|
+
}
|
|
409
|
+
export interface V1AppArmorProfile {
|
|
410
|
+
localhostProfile?: string;
|
|
411
|
+
type: string;
|
|
412
|
+
}
|
|
413
|
+
export interface V1AttachedVolume {
|
|
414
|
+
devicePath: string;
|
|
415
|
+
name: string;
|
|
416
|
+
}
|
|
417
|
+
export interface V1AuditAnnotation {
|
|
418
|
+
key: string;
|
|
419
|
+
valueExpression: string;
|
|
420
|
+
}
|
|
421
|
+
export interface V1AuthenticationTokenRequest {
|
|
422
|
+
apiVersion?: string;
|
|
423
|
+
kind?: string;
|
|
424
|
+
metadata?: V1ObjectMeta;
|
|
425
|
+
spec: V1TokenRequestSpec;
|
|
426
|
+
status?: V1TokenRequestStatus;
|
|
427
|
+
}
|
|
428
|
+
export interface V1AWSElasticBlockStoreVolumeSource {
|
|
429
|
+
fsType?: string;
|
|
430
|
+
partition?: number;
|
|
431
|
+
readOnly?: boolean;
|
|
432
|
+
volumeID: string;
|
|
433
|
+
}
|
|
434
|
+
export interface V1AzureDiskVolumeSource {
|
|
435
|
+
cachingMode?: string;
|
|
436
|
+
diskName: string;
|
|
437
|
+
diskURI: string;
|
|
438
|
+
fsType?: string;
|
|
439
|
+
kind?: string;
|
|
440
|
+
readOnly?: boolean;
|
|
441
|
+
}
|
|
442
|
+
export interface V1AzureFilePersistentVolumeSource {
|
|
443
|
+
readOnly?: boolean;
|
|
444
|
+
secretName: string;
|
|
445
|
+
secretNamespace?: string;
|
|
446
|
+
shareName: string;
|
|
447
|
+
}
|
|
448
|
+
export interface V1AzureFileVolumeSource {
|
|
449
|
+
readOnly?: boolean;
|
|
450
|
+
secretName: string;
|
|
451
|
+
shareName: string;
|
|
452
|
+
}
|
|
453
|
+
export interface V1beta1AllocatedDeviceStatus {
|
|
454
|
+
conditions?: V1Condition[];
|
|
455
|
+
data?: RawExtension;
|
|
456
|
+
device: string;
|
|
457
|
+
driver: string;
|
|
458
|
+
networkData?: V1beta1NetworkDeviceData;
|
|
459
|
+
pool: string;
|
|
460
|
+
shareID?: string;
|
|
461
|
+
}
|
|
462
|
+
export interface V1beta1AllocationResult {
|
|
463
|
+
allocationTimestamp?: V1Time;
|
|
464
|
+
devices?: V1beta1DeviceAllocationResult;
|
|
465
|
+
nodeSelector?: V1NodeSelector;
|
|
466
|
+
}
|
|
467
|
+
export interface V1beta1ApplyConfiguration {
|
|
468
|
+
expression?: string;
|
|
469
|
+
}
|
|
470
|
+
export interface V1beta1BasicDevice {
|
|
471
|
+
allNodes?: boolean;
|
|
472
|
+
allowMultipleAllocations?: boolean;
|
|
473
|
+
attributes?: Record<string, V1beta1DeviceAttribute>;
|
|
474
|
+
bindingConditions?: string[];
|
|
475
|
+
bindingFailureConditions?: string[];
|
|
476
|
+
bindsToNode?: boolean;
|
|
477
|
+
capacity?: Record<string, V1beta1DeviceCapacity>;
|
|
478
|
+
consumesCounters?: V1beta1DeviceCounterConsumption[];
|
|
479
|
+
nodeName?: string;
|
|
480
|
+
nodeSelector?: V1NodeSelector;
|
|
481
|
+
taints?: V1beta1DeviceTaint[];
|
|
482
|
+
}
|
|
483
|
+
export interface V1beta1CapacityRequestPolicy {
|
|
484
|
+
default?: Quantity;
|
|
485
|
+
validRange?: V1beta1CapacityRequestPolicyRange;
|
|
486
|
+
validValues?: Quantity[];
|
|
487
|
+
}
|
|
488
|
+
export interface V1beta1CapacityRequestPolicyRange {
|
|
489
|
+
max?: Quantity;
|
|
490
|
+
min: Quantity;
|
|
491
|
+
step?: Quantity;
|
|
492
|
+
}
|
|
493
|
+
export interface V1beta1CapacityRequirements {
|
|
494
|
+
requests?: Record<string, Quantity>;
|
|
495
|
+
}
|
|
496
|
+
export interface V1beta1CELDeviceSelector {
|
|
497
|
+
expression: string;
|
|
498
|
+
}
|
|
499
|
+
export interface V1beta1ClusterTrustBundle {
|
|
500
|
+
apiVersion?: string;
|
|
501
|
+
kind?: string;
|
|
502
|
+
metadata?: V1ObjectMeta;
|
|
503
|
+
spec: V1beta1ClusterTrustBundleSpec;
|
|
504
|
+
}
|
|
505
|
+
export interface V1beta1ClusterTrustBundleList {
|
|
506
|
+
apiVersion?: string;
|
|
507
|
+
items: V1beta1ClusterTrustBundle[];
|
|
508
|
+
kind?: string;
|
|
509
|
+
metadata?: V1ListMeta;
|
|
510
|
+
}
|
|
511
|
+
export interface V1beta1ClusterTrustBundleSpec {
|
|
512
|
+
signerName?: string;
|
|
513
|
+
trustBundle: string;
|
|
514
|
+
}
|
|
515
|
+
export interface V1beta1Counter {
|
|
516
|
+
value: Quantity;
|
|
517
|
+
}
|
|
518
|
+
export interface V1beta1CounterSet {
|
|
519
|
+
counters: Record<string, V1beta1Counter>;
|
|
520
|
+
name: string;
|
|
521
|
+
}
|
|
522
|
+
export interface V1beta1Device {
|
|
523
|
+
basic?: V1beta1BasicDevice;
|
|
524
|
+
name: string;
|
|
525
|
+
}
|
|
526
|
+
export interface V1beta1DeviceAllocationConfiguration {
|
|
527
|
+
opaque?: V1beta1OpaqueDeviceConfiguration;
|
|
528
|
+
requests?: string[];
|
|
529
|
+
source: string;
|
|
530
|
+
}
|
|
531
|
+
export interface V1beta1DeviceAllocationResult {
|
|
532
|
+
config?: V1beta1DeviceAllocationConfiguration[];
|
|
533
|
+
results?: V1beta1DeviceRequestAllocationResult[];
|
|
534
|
+
}
|
|
535
|
+
export interface V1beta1DeviceAttribute {
|
|
536
|
+
bool?: boolean;
|
|
537
|
+
int?: number;
|
|
538
|
+
string?: string;
|
|
539
|
+
version?: string;
|
|
540
|
+
}
|
|
541
|
+
export interface V1beta1DeviceCapacity {
|
|
542
|
+
requestPolicy?: V1beta1CapacityRequestPolicy;
|
|
543
|
+
value: Quantity;
|
|
544
|
+
}
|
|
545
|
+
export interface V1beta1DeviceClaim {
|
|
546
|
+
config?: V1beta1DeviceClaimConfiguration[];
|
|
547
|
+
constraints?: V1beta1DeviceConstraint[];
|
|
548
|
+
requests?: V1beta1DeviceRequest[];
|
|
549
|
+
}
|
|
550
|
+
export interface V1beta1DeviceClaimConfiguration {
|
|
551
|
+
opaque?: V1beta1OpaqueDeviceConfiguration;
|
|
552
|
+
requests?: string[];
|
|
553
|
+
}
|
|
554
|
+
export interface V1beta1DeviceClass {
|
|
555
|
+
apiVersion?: string;
|
|
556
|
+
kind?: string;
|
|
557
|
+
metadata?: V1ObjectMeta;
|
|
558
|
+
spec: V1beta1DeviceClassSpec;
|
|
559
|
+
}
|
|
560
|
+
export interface V1beta1DeviceClassConfiguration {
|
|
561
|
+
opaque?: V1beta1OpaqueDeviceConfiguration;
|
|
562
|
+
}
|
|
563
|
+
export interface V1beta1DeviceClassList {
|
|
564
|
+
apiVersion?: string;
|
|
565
|
+
items: V1beta1DeviceClass[];
|
|
566
|
+
kind?: string;
|
|
567
|
+
metadata?: V1ListMeta;
|
|
568
|
+
}
|
|
569
|
+
export interface V1beta1DeviceClassSpec {
|
|
570
|
+
config?: V1beta1DeviceClassConfiguration[];
|
|
571
|
+
extendedResourceName?: string;
|
|
572
|
+
selectors?: V1beta1DeviceSelector[];
|
|
573
|
+
}
|
|
574
|
+
export interface V1beta1DeviceConstraint {
|
|
575
|
+
distinctAttribute?: string;
|
|
576
|
+
matchAttribute?: string;
|
|
577
|
+
requests?: string[];
|
|
578
|
+
}
|
|
579
|
+
export interface V1beta1DeviceCounterConsumption {
|
|
580
|
+
counters: Record<string, V1beta1Counter>;
|
|
581
|
+
counterSet: string;
|
|
582
|
+
}
|
|
583
|
+
export interface V1beta1DeviceRequest {
|
|
584
|
+
adminAccess?: boolean;
|
|
585
|
+
allocationMode?: string;
|
|
586
|
+
capacity?: V1beta1CapacityRequirements;
|
|
587
|
+
count?: number;
|
|
588
|
+
deviceClassName?: string;
|
|
589
|
+
firstAvailable?: V1beta1DeviceSubRequest[];
|
|
590
|
+
name: string;
|
|
591
|
+
selectors?: V1beta1DeviceSelector[];
|
|
592
|
+
tolerations?: V1beta1DeviceToleration[];
|
|
593
|
+
}
|
|
594
|
+
export interface V1beta1DeviceRequestAllocationResult {
|
|
595
|
+
adminAccess?: boolean;
|
|
596
|
+
bindingConditions?: string[];
|
|
597
|
+
bindingFailureConditions?: string[];
|
|
598
|
+
consumedCapacity?: Record<string, Quantity>;
|
|
599
|
+
device: string;
|
|
600
|
+
driver: string;
|
|
601
|
+
pool: string;
|
|
602
|
+
request: string;
|
|
603
|
+
shareID?: string;
|
|
604
|
+
tolerations?: V1beta1DeviceToleration[];
|
|
605
|
+
}
|
|
606
|
+
export interface V1beta1DeviceSelector {
|
|
607
|
+
cel?: V1beta1CELDeviceSelector;
|
|
608
|
+
}
|
|
609
|
+
export interface V1beta1DeviceSubRequest {
|
|
610
|
+
allocationMode?: string;
|
|
611
|
+
capacity?: V1beta1CapacityRequirements;
|
|
612
|
+
count?: number;
|
|
613
|
+
deviceClassName: string;
|
|
614
|
+
name: string;
|
|
615
|
+
selectors?: V1beta1DeviceSelector[];
|
|
616
|
+
tolerations?: V1beta1DeviceToleration[];
|
|
617
|
+
}
|
|
618
|
+
export interface V1beta1DeviceTaint {
|
|
619
|
+
effect: string;
|
|
620
|
+
key: string;
|
|
621
|
+
timeAdded?: V1Time;
|
|
622
|
+
value?: string;
|
|
623
|
+
}
|
|
624
|
+
export interface V1beta1DeviceToleration {
|
|
625
|
+
effect?: string;
|
|
626
|
+
key?: string;
|
|
627
|
+
operator?: string;
|
|
628
|
+
tolerationSeconds?: number;
|
|
629
|
+
value?: string;
|
|
630
|
+
}
|
|
631
|
+
export interface V1beta1IPAddress {
|
|
632
|
+
apiVersion?: string;
|
|
633
|
+
kind?: string;
|
|
634
|
+
metadata?: V1ObjectMeta;
|
|
635
|
+
spec?: V1beta1IPAddressSpec;
|
|
636
|
+
}
|
|
637
|
+
export interface V1beta1IPAddressList {
|
|
638
|
+
apiVersion?: string;
|
|
639
|
+
items: V1beta1IPAddress[];
|
|
640
|
+
kind?: string;
|
|
641
|
+
metadata?: V1ListMeta;
|
|
642
|
+
}
|
|
643
|
+
export interface V1beta1IPAddressSpec {
|
|
644
|
+
parentRef: V1beta1ParentReference;
|
|
645
|
+
}
|
|
646
|
+
export interface V1beta1JSONPatch {
|
|
647
|
+
expression?: string;
|
|
648
|
+
}
|
|
649
|
+
export interface V1beta1LeaseCandidate {
|
|
650
|
+
apiVersion?: string;
|
|
651
|
+
kind?: string;
|
|
652
|
+
metadata?: V1ObjectMeta;
|
|
653
|
+
spec?: V1beta1LeaseCandidateSpec;
|
|
654
|
+
}
|
|
655
|
+
export interface V1beta1LeaseCandidateList {
|
|
656
|
+
apiVersion?: string;
|
|
657
|
+
items: V1beta1LeaseCandidate[];
|
|
658
|
+
kind?: string;
|
|
659
|
+
metadata?: V1ListMeta;
|
|
660
|
+
}
|
|
661
|
+
export interface V1beta1LeaseCandidateSpec {
|
|
662
|
+
binaryVersion: string;
|
|
663
|
+
emulationVersion?: string;
|
|
664
|
+
leaseName: string;
|
|
665
|
+
pingTime?: V1MicroTime;
|
|
666
|
+
renewTime?: V1MicroTime;
|
|
667
|
+
strategy: string;
|
|
668
|
+
}
|
|
669
|
+
export interface V1beta1MatchCondition {
|
|
670
|
+
expression: string;
|
|
671
|
+
name: string;
|
|
672
|
+
}
|
|
673
|
+
export interface V1beta1MatchResources {
|
|
674
|
+
excludeResourceRules?: V1beta1NamedRuleWithOperations[];
|
|
675
|
+
matchPolicy?: string;
|
|
676
|
+
namespaceSelector?: V1LabelSelector;
|
|
677
|
+
objectSelector?: V1LabelSelector;
|
|
678
|
+
resourceRules?: V1beta1NamedRuleWithOperations[];
|
|
679
|
+
}
|
|
680
|
+
export interface V1beta1MutatingAdmissionPolicy {
|
|
681
|
+
apiVersion?: string;
|
|
682
|
+
kind?: string;
|
|
683
|
+
metadata?: V1ObjectMeta;
|
|
684
|
+
spec?: V1beta1MutatingAdmissionPolicySpec;
|
|
685
|
+
}
|
|
686
|
+
export interface V1beta1MutatingAdmissionPolicyBinding {
|
|
687
|
+
apiVersion?: string;
|
|
688
|
+
kind?: string;
|
|
689
|
+
metadata?: V1ObjectMeta;
|
|
690
|
+
spec?: V1beta1MutatingAdmissionPolicyBindingSpec;
|
|
691
|
+
}
|
|
692
|
+
export interface V1beta1MutatingAdmissionPolicyBindingList {
|
|
693
|
+
apiVersion?: string;
|
|
694
|
+
items: V1beta1MutatingAdmissionPolicyBinding[];
|
|
695
|
+
kind?: string;
|
|
696
|
+
metadata?: V1ListMeta;
|
|
697
|
+
}
|
|
698
|
+
export interface V1beta1MutatingAdmissionPolicyBindingSpec {
|
|
699
|
+
matchResources?: V1beta1MatchResources;
|
|
700
|
+
paramRef?: V1beta1ParamRef;
|
|
701
|
+
policyName?: string;
|
|
702
|
+
}
|
|
703
|
+
export interface V1beta1MutatingAdmissionPolicyList {
|
|
704
|
+
apiVersion?: string;
|
|
705
|
+
items: V1beta1MutatingAdmissionPolicy[];
|
|
706
|
+
kind?: string;
|
|
707
|
+
metadata?: V1ListMeta;
|
|
708
|
+
}
|
|
709
|
+
export interface V1beta1MutatingAdmissionPolicySpec {
|
|
710
|
+
failurePolicy?: string;
|
|
711
|
+
matchConditions?: V1beta1MatchCondition[];
|
|
712
|
+
matchConstraints?: V1beta1MatchResources;
|
|
713
|
+
mutations?: V1beta1Mutation[];
|
|
714
|
+
paramKind?: V1beta1ParamKind;
|
|
715
|
+
reinvocationPolicy?: string;
|
|
716
|
+
variables?: V1beta1Variable[];
|
|
717
|
+
}
|
|
718
|
+
export interface V1beta1Mutation {
|
|
719
|
+
applyConfiguration?: V1beta1ApplyConfiguration;
|
|
720
|
+
jsonPatch?: V1beta1JSONPatch;
|
|
721
|
+
patchType: string;
|
|
722
|
+
}
|
|
723
|
+
export interface V1beta1NamedRuleWithOperations {
|
|
724
|
+
apiGroups?: string[];
|
|
725
|
+
apiVersions?: string[];
|
|
726
|
+
operations?: string[];
|
|
727
|
+
resourceNames?: string[];
|
|
728
|
+
resources?: string[];
|
|
729
|
+
scope?: string;
|
|
730
|
+
}
|
|
731
|
+
export interface V1beta1NetworkDeviceData {
|
|
732
|
+
hardwareAddress?: string;
|
|
733
|
+
interfaceName?: string;
|
|
734
|
+
ips?: string[];
|
|
735
|
+
}
|
|
736
|
+
export interface V1beta1OpaqueDeviceConfiguration {
|
|
737
|
+
driver: string;
|
|
738
|
+
parameters: RawExtension;
|
|
739
|
+
}
|
|
740
|
+
export interface V1beta1ParamKind {
|
|
741
|
+
apiVersion?: string;
|
|
742
|
+
kind?: string;
|
|
743
|
+
}
|
|
744
|
+
export interface V1beta1ParamRef {
|
|
745
|
+
name?: string;
|
|
746
|
+
namespace?: string;
|
|
747
|
+
parameterNotFoundAction?: string;
|
|
748
|
+
selector?: V1LabelSelector;
|
|
749
|
+
}
|
|
750
|
+
export interface V1beta1ParentReference {
|
|
751
|
+
group?: string;
|
|
752
|
+
name: string;
|
|
753
|
+
namespace?: string;
|
|
754
|
+
resource: string;
|
|
755
|
+
}
|
|
756
|
+
export interface V1beta1ResourceClaim {
|
|
757
|
+
apiVersion?: string;
|
|
758
|
+
kind?: string;
|
|
759
|
+
metadata?: V1ObjectMeta;
|
|
760
|
+
spec: V1beta1ResourceClaimSpec;
|
|
761
|
+
status?: V1beta1ResourceClaimStatus;
|
|
762
|
+
}
|
|
763
|
+
export interface V1beta1ResourceClaimConsumerReference {
|
|
764
|
+
apiGroup?: string;
|
|
765
|
+
name: string;
|
|
766
|
+
resource: string;
|
|
767
|
+
uid: string;
|
|
768
|
+
}
|
|
769
|
+
export interface V1beta1ResourceClaimList {
|
|
770
|
+
apiVersion?: string;
|
|
771
|
+
items: V1beta1ResourceClaim[];
|
|
772
|
+
kind?: string;
|
|
773
|
+
metadata?: V1ListMeta;
|
|
774
|
+
}
|
|
775
|
+
export interface V1beta1ResourceClaimSpec {
|
|
776
|
+
devices?: V1beta1DeviceClaim;
|
|
777
|
+
}
|
|
778
|
+
export interface V1beta1ResourceClaimStatus {
|
|
779
|
+
allocation?: V1beta1AllocationResult;
|
|
780
|
+
devices?: V1beta1AllocatedDeviceStatus[];
|
|
781
|
+
reservedFor?: V1beta1ResourceClaimConsumerReference[];
|
|
782
|
+
}
|
|
783
|
+
export interface V1beta1ResourceClaimTemplate {
|
|
784
|
+
apiVersion?: string;
|
|
785
|
+
kind?: string;
|
|
786
|
+
metadata?: V1ObjectMeta;
|
|
787
|
+
spec: V1beta1ResourceClaimTemplateSpec;
|
|
788
|
+
}
|
|
789
|
+
export interface V1beta1ResourceClaimTemplateList {
|
|
790
|
+
apiVersion?: string;
|
|
791
|
+
items: V1beta1ResourceClaimTemplate[];
|
|
792
|
+
kind?: string;
|
|
793
|
+
metadata?: V1ListMeta;
|
|
794
|
+
}
|
|
795
|
+
export interface V1beta1ResourceClaimTemplateSpec {
|
|
796
|
+
metadata?: V1ObjectMeta;
|
|
797
|
+
spec: V1beta1ResourceClaimSpec;
|
|
798
|
+
}
|
|
799
|
+
export interface V1beta1ResourcePool {
|
|
800
|
+
generation: number;
|
|
801
|
+
name: string;
|
|
802
|
+
resourceSliceCount: number;
|
|
803
|
+
}
|
|
804
|
+
export interface V1beta1ResourceSlice {
|
|
805
|
+
apiVersion?: string;
|
|
806
|
+
kind?: string;
|
|
807
|
+
metadata?: V1ObjectMeta;
|
|
808
|
+
spec: V1beta1ResourceSliceSpec;
|
|
809
|
+
}
|
|
810
|
+
export interface V1beta1ResourceSliceList {
|
|
811
|
+
apiVersion?: string;
|
|
812
|
+
items: V1beta1ResourceSlice[];
|
|
813
|
+
kind?: string;
|
|
814
|
+
metadata?: V1ListMeta;
|
|
815
|
+
}
|
|
816
|
+
export interface V1beta1ResourceSliceSpec {
|
|
817
|
+
allNodes?: boolean;
|
|
818
|
+
devices?: V1beta1Device[];
|
|
819
|
+
driver: string;
|
|
820
|
+
nodeName?: string;
|
|
821
|
+
nodeSelector?: V1NodeSelector;
|
|
822
|
+
perDeviceNodeSelection?: boolean;
|
|
823
|
+
pool: V1beta1ResourcePool;
|
|
824
|
+
sharedCounters?: V1beta1CounterSet[];
|
|
825
|
+
}
|
|
826
|
+
export interface V1beta1ServiceCIDR {
|
|
827
|
+
apiVersion?: string;
|
|
828
|
+
kind?: string;
|
|
829
|
+
metadata?: V1ObjectMeta;
|
|
830
|
+
spec?: V1beta1ServiceCIDRSpec;
|
|
831
|
+
status?: V1beta1ServiceCIDRStatus;
|
|
832
|
+
}
|
|
833
|
+
export interface V1beta1ServiceCIDRList {
|
|
834
|
+
apiVersion?: string;
|
|
835
|
+
items: V1beta1ServiceCIDR[];
|
|
836
|
+
kind?: string;
|
|
837
|
+
metadata?: V1ListMeta;
|
|
838
|
+
}
|
|
839
|
+
export interface V1beta1ServiceCIDRSpec {
|
|
840
|
+
cidrs?: string[];
|
|
841
|
+
}
|
|
842
|
+
export interface V1beta1ServiceCIDRStatus {
|
|
843
|
+
conditions?: V1Condition[];
|
|
844
|
+
}
|
|
845
|
+
export interface V1beta1Variable {
|
|
846
|
+
expression: string;
|
|
847
|
+
name: string;
|
|
848
|
+
}
|
|
849
|
+
export interface V1beta1VolumeAttributesClass {
|
|
850
|
+
apiVersion?: string;
|
|
851
|
+
driverName: string;
|
|
852
|
+
kind?: string;
|
|
853
|
+
metadata?: V1ObjectMeta;
|
|
854
|
+
parameters?: Record<string, string>;
|
|
855
|
+
}
|
|
856
|
+
export interface V1beta1VolumeAttributesClassList {
|
|
857
|
+
apiVersion?: string;
|
|
858
|
+
items: V1beta1VolumeAttributesClass[];
|
|
859
|
+
kind?: string;
|
|
860
|
+
metadata?: V1ListMeta;
|
|
861
|
+
}
|
|
862
|
+
export interface V1beta2AllocatedDeviceStatus {
|
|
863
|
+
conditions?: V1Condition[];
|
|
864
|
+
data?: RawExtension;
|
|
865
|
+
device: string;
|
|
866
|
+
driver: string;
|
|
867
|
+
networkData?: V1beta2NetworkDeviceData;
|
|
868
|
+
pool: string;
|
|
869
|
+
shareID?: string;
|
|
870
|
+
}
|
|
871
|
+
export interface V1beta2AllocationResult {
|
|
872
|
+
allocationTimestamp?: V1Time;
|
|
873
|
+
devices?: V1beta2DeviceAllocationResult;
|
|
874
|
+
nodeSelector?: V1NodeSelector;
|
|
875
|
+
}
|
|
876
|
+
export interface V1beta2CapacityRequestPolicy {
|
|
877
|
+
default?: Quantity;
|
|
878
|
+
validRange?: V1beta2CapacityRequestPolicyRange;
|
|
879
|
+
validValues?: Quantity[];
|
|
880
|
+
}
|
|
881
|
+
export interface V1beta2CapacityRequestPolicyRange {
|
|
882
|
+
max?: Quantity;
|
|
883
|
+
min: Quantity;
|
|
884
|
+
step?: Quantity;
|
|
885
|
+
}
|
|
886
|
+
export interface V1beta2CapacityRequirements {
|
|
887
|
+
requests?: Record<string, Quantity>;
|
|
888
|
+
}
|
|
889
|
+
export interface V1beta2CELDeviceSelector {
|
|
890
|
+
expression: string;
|
|
891
|
+
}
|
|
892
|
+
export interface V1beta2Counter {
|
|
893
|
+
value: Quantity;
|
|
894
|
+
}
|
|
895
|
+
export interface V1beta2CounterSet {
|
|
896
|
+
counters: Record<string, V1beta2Counter>;
|
|
897
|
+
name: string;
|
|
898
|
+
}
|
|
899
|
+
export interface V1beta2Device {
|
|
900
|
+
allNodes?: boolean;
|
|
901
|
+
allowMultipleAllocations?: boolean;
|
|
902
|
+
attributes?: Record<string, V1beta2DeviceAttribute>;
|
|
903
|
+
bindingConditions?: string[];
|
|
904
|
+
bindingFailureConditions?: string[];
|
|
905
|
+
bindsToNode?: boolean;
|
|
906
|
+
capacity?: Record<string, V1beta2DeviceCapacity>;
|
|
907
|
+
consumesCounters?: V1beta2DeviceCounterConsumption[];
|
|
908
|
+
name: string;
|
|
909
|
+
nodeName?: string;
|
|
910
|
+
nodeSelector?: V1NodeSelector;
|
|
911
|
+
taints?: V1beta2DeviceTaint[];
|
|
912
|
+
}
|
|
913
|
+
export interface V1beta2DeviceAllocationConfiguration {
|
|
914
|
+
opaque?: V1beta2OpaqueDeviceConfiguration;
|
|
915
|
+
requests?: string[];
|
|
916
|
+
source: string;
|
|
917
|
+
}
|
|
918
|
+
export interface V1beta2DeviceAllocationResult {
|
|
919
|
+
config?: V1beta2DeviceAllocationConfiguration[];
|
|
920
|
+
results?: V1beta2DeviceRequestAllocationResult[];
|
|
921
|
+
}
|
|
922
|
+
export interface V1beta2DeviceAttribute {
|
|
923
|
+
bool?: boolean;
|
|
924
|
+
int?: number;
|
|
925
|
+
string?: string;
|
|
926
|
+
version?: string;
|
|
927
|
+
}
|
|
928
|
+
export interface V1beta2DeviceCapacity {
|
|
929
|
+
requestPolicy?: V1beta2CapacityRequestPolicy;
|
|
930
|
+
value: Quantity;
|
|
931
|
+
}
|
|
932
|
+
export interface V1beta2DeviceClaim {
|
|
933
|
+
config?: V1beta2DeviceClaimConfiguration[];
|
|
934
|
+
constraints?: V1beta2DeviceConstraint[];
|
|
935
|
+
requests?: V1beta2DeviceRequest[];
|
|
936
|
+
}
|
|
937
|
+
export interface V1beta2DeviceClaimConfiguration {
|
|
938
|
+
opaque?: V1beta2OpaqueDeviceConfiguration;
|
|
939
|
+
requests?: string[];
|
|
940
|
+
}
|
|
941
|
+
export interface V1beta2DeviceClass {
|
|
942
|
+
apiVersion?: string;
|
|
943
|
+
kind?: string;
|
|
944
|
+
metadata?: V1ObjectMeta;
|
|
945
|
+
spec: V1beta2DeviceClassSpec;
|
|
946
|
+
}
|
|
947
|
+
export interface V1beta2DeviceClassConfiguration {
|
|
948
|
+
opaque?: V1beta2OpaqueDeviceConfiguration;
|
|
949
|
+
}
|
|
950
|
+
export interface V1beta2DeviceClassList {
|
|
951
|
+
apiVersion?: string;
|
|
952
|
+
items: V1beta2DeviceClass[];
|
|
953
|
+
kind?: string;
|
|
954
|
+
metadata?: V1ListMeta;
|
|
955
|
+
}
|
|
956
|
+
export interface V1beta2DeviceClassSpec {
|
|
957
|
+
config?: V1beta2DeviceClassConfiguration[];
|
|
958
|
+
extendedResourceName?: string;
|
|
959
|
+
selectors?: V1beta2DeviceSelector[];
|
|
960
|
+
}
|
|
961
|
+
export interface V1beta2DeviceConstraint {
|
|
962
|
+
distinctAttribute?: string;
|
|
963
|
+
matchAttribute?: string;
|
|
964
|
+
requests?: string[];
|
|
965
|
+
}
|
|
966
|
+
export interface V1beta2DeviceCounterConsumption {
|
|
967
|
+
counters: Record<string, V1beta2Counter>;
|
|
968
|
+
counterSet: string;
|
|
969
|
+
}
|
|
970
|
+
export interface V1beta2DeviceRequest {
|
|
971
|
+
exactly?: V1beta2ExactDeviceRequest;
|
|
972
|
+
firstAvailable?: V1beta2DeviceSubRequest[];
|
|
973
|
+
name: string;
|
|
974
|
+
}
|
|
975
|
+
export interface V1beta2DeviceRequestAllocationResult {
|
|
976
|
+
adminAccess?: boolean;
|
|
977
|
+
bindingConditions?: string[];
|
|
978
|
+
bindingFailureConditions?: string[];
|
|
979
|
+
consumedCapacity?: Record<string, Quantity>;
|
|
980
|
+
device: string;
|
|
981
|
+
driver: string;
|
|
982
|
+
pool: string;
|
|
983
|
+
request: string;
|
|
984
|
+
shareID?: string;
|
|
985
|
+
tolerations?: V1beta2DeviceToleration[];
|
|
986
|
+
}
|
|
987
|
+
export interface V1beta2DeviceSelector {
|
|
988
|
+
cel?: V1beta2CELDeviceSelector;
|
|
989
|
+
}
|
|
990
|
+
export interface V1beta2DeviceSubRequest {
|
|
991
|
+
allocationMode?: string;
|
|
992
|
+
capacity?: V1beta2CapacityRequirements;
|
|
993
|
+
count?: number;
|
|
994
|
+
deviceClassName: string;
|
|
995
|
+
name: string;
|
|
996
|
+
selectors?: V1beta2DeviceSelector[];
|
|
997
|
+
tolerations?: V1beta2DeviceToleration[];
|
|
998
|
+
}
|
|
999
|
+
export interface V1beta2DeviceTaint {
|
|
1000
|
+
effect: string;
|
|
1001
|
+
key: string;
|
|
1002
|
+
timeAdded?: V1Time;
|
|
1003
|
+
value?: string;
|
|
1004
|
+
}
|
|
1005
|
+
export interface V1beta2DeviceToleration {
|
|
1006
|
+
effect?: string;
|
|
1007
|
+
key?: string;
|
|
1008
|
+
operator?: string;
|
|
1009
|
+
tolerationSeconds?: number;
|
|
1010
|
+
value?: string;
|
|
1011
|
+
}
|
|
1012
|
+
export interface V1beta2ExactDeviceRequest {
|
|
1013
|
+
adminAccess?: boolean;
|
|
1014
|
+
allocationMode?: string;
|
|
1015
|
+
capacity?: V1beta2CapacityRequirements;
|
|
1016
|
+
count?: number;
|
|
1017
|
+
deviceClassName: string;
|
|
1018
|
+
selectors?: V1beta2DeviceSelector[];
|
|
1019
|
+
tolerations?: V1beta2DeviceToleration[];
|
|
1020
|
+
}
|
|
1021
|
+
export interface V1beta2NetworkDeviceData {
|
|
1022
|
+
hardwareAddress?: string;
|
|
1023
|
+
interfaceName?: string;
|
|
1024
|
+
ips?: string[];
|
|
1025
|
+
}
|
|
1026
|
+
export interface V1beta2OpaqueDeviceConfiguration {
|
|
1027
|
+
driver: string;
|
|
1028
|
+
parameters: RawExtension;
|
|
1029
|
+
}
|
|
1030
|
+
export interface V1beta2ResourceClaim {
|
|
1031
|
+
apiVersion?: string;
|
|
1032
|
+
kind?: string;
|
|
1033
|
+
metadata?: V1ObjectMeta;
|
|
1034
|
+
spec: V1beta2ResourceClaimSpec;
|
|
1035
|
+
status?: V1beta2ResourceClaimStatus;
|
|
1036
|
+
}
|
|
1037
|
+
export interface V1beta2ResourceClaimConsumerReference {
|
|
1038
|
+
apiGroup?: string;
|
|
1039
|
+
name: string;
|
|
1040
|
+
resource: string;
|
|
1041
|
+
uid: string;
|
|
1042
|
+
}
|
|
1043
|
+
export interface V1beta2ResourceClaimList {
|
|
1044
|
+
apiVersion?: string;
|
|
1045
|
+
items: V1beta2ResourceClaim[];
|
|
1046
|
+
kind?: string;
|
|
1047
|
+
metadata?: V1ListMeta;
|
|
1048
|
+
}
|
|
1049
|
+
export interface V1beta2ResourceClaimSpec {
|
|
1050
|
+
devices?: V1beta2DeviceClaim;
|
|
1051
|
+
}
|
|
1052
|
+
export interface V1beta2ResourceClaimStatus {
|
|
1053
|
+
allocation?: V1beta2AllocationResult;
|
|
1054
|
+
devices?: V1beta2AllocatedDeviceStatus[];
|
|
1055
|
+
reservedFor?: V1beta2ResourceClaimConsumerReference[];
|
|
1056
|
+
}
|
|
1057
|
+
export interface V1beta2ResourceClaimTemplate {
|
|
1058
|
+
apiVersion?: string;
|
|
1059
|
+
kind?: string;
|
|
1060
|
+
metadata?: V1ObjectMeta;
|
|
1061
|
+
spec: V1beta2ResourceClaimTemplateSpec;
|
|
1062
|
+
}
|
|
1063
|
+
export interface V1beta2ResourceClaimTemplateList {
|
|
1064
|
+
apiVersion?: string;
|
|
1065
|
+
items: V1beta2ResourceClaimTemplate[];
|
|
1066
|
+
kind?: string;
|
|
1067
|
+
metadata?: V1ListMeta;
|
|
1068
|
+
}
|
|
1069
|
+
export interface V1beta2ResourceClaimTemplateSpec {
|
|
1070
|
+
metadata?: V1ObjectMeta;
|
|
1071
|
+
spec: V1beta2ResourceClaimSpec;
|
|
1072
|
+
}
|
|
1073
|
+
export interface V1beta2ResourcePool {
|
|
1074
|
+
generation: number;
|
|
1075
|
+
name: string;
|
|
1076
|
+
resourceSliceCount: number;
|
|
1077
|
+
}
|
|
1078
|
+
export interface V1beta2ResourceSlice {
|
|
1079
|
+
apiVersion?: string;
|
|
1080
|
+
kind?: string;
|
|
1081
|
+
metadata?: V1ObjectMeta;
|
|
1082
|
+
spec: V1beta2ResourceSliceSpec;
|
|
1083
|
+
}
|
|
1084
|
+
export interface V1beta2ResourceSliceList {
|
|
1085
|
+
apiVersion?: string;
|
|
1086
|
+
items: V1beta2ResourceSlice[];
|
|
1087
|
+
kind?: string;
|
|
1088
|
+
metadata?: V1ListMeta;
|
|
1089
|
+
}
|
|
1090
|
+
export interface V1beta2ResourceSliceSpec {
|
|
1091
|
+
allNodes?: boolean;
|
|
1092
|
+
devices?: V1beta2Device[];
|
|
1093
|
+
driver: string;
|
|
1094
|
+
nodeName?: string;
|
|
1095
|
+
nodeSelector?: V1NodeSelector;
|
|
1096
|
+
perDeviceNodeSelection?: boolean;
|
|
1097
|
+
pool: V1beta2ResourcePool;
|
|
1098
|
+
sharedCounters?: V1beta2CounterSet[];
|
|
1099
|
+
}
|
|
1100
|
+
export interface V1Binding {
|
|
1101
|
+
apiVersion?: string;
|
|
1102
|
+
kind?: string;
|
|
1103
|
+
metadata?: V1ObjectMeta;
|
|
1104
|
+
target: V1ObjectReference;
|
|
1105
|
+
}
|
|
1106
|
+
export interface V1BoundObjectReference {
|
|
1107
|
+
apiVersion?: string;
|
|
1108
|
+
kind?: string;
|
|
1109
|
+
name?: string;
|
|
1110
|
+
uid?: string;
|
|
1111
|
+
}
|
|
1112
|
+
export interface V1Capabilities {
|
|
1113
|
+
add?: string[];
|
|
1114
|
+
drop?: string[];
|
|
1115
|
+
}
|
|
1116
|
+
export interface V1CapacityRequestPolicy {
|
|
1117
|
+
default?: Quantity;
|
|
1118
|
+
validRange?: V1CapacityRequestPolicyRange;
|
|
1119
|
+
validValues?: Quantity[];
|
|
1120
|
+
}
|
|
1121
|
+
export interface V1CapacityRequestPolicyRange {
|
|
1122
|
+
max?: Quantity;
|
|
1123
|
+
min: Quantity;
|
|
1124
|
+
step?: Quantity;
|
|
1125
|
+
}
|
|
1126
|
+
export interface V1CapacityRequirements {
|
|
1127
|
+
requests?: Record<string, Quantity>;
|
|
1128
|
+
}
|
|
1129
|
+
export interface V1CELDeviceSelector {
|
|
1130
|
+
expression: string;
|
|
1131
|
+
}
|
|
1132
|
+
export interface V1CephFSPersistentVolumeSource {
|
|
1133
|
+
monitors: string[];
|
|
1134
|
+
path?: string;
|
|
1135
|
+
readOnly?: boolean;
|
|
1136
|
+
secretFile?: string;
|
|
1137
|
+
secretRef?: V1SecretReference;
|
|
1138
|
+
user?: string;
|
|
1139
|
+
}
|
|
1140
|
+
export interface V1CephFSVolumeSource {
|
|
1141
|
+
monitors: string[];
|
|
1142
|
+
path?: string;
|
|
1143
|
+
readOnly?: boolean;
|
|
1144
|
+
secretFile?: string;
|
|
1145
|
+
secretRef?: V1LocalObjectReference;
|
|
1146
|
+
user?: string;
|
|
1147
|
+
}
|
|
1148
|
+
export interface V1CertificateSigningRequest {
|
|
1149
|
+
apiVersion?: string;
|
|
1150
|
+
kind?: string;
|
|
1151
|
+
metadata?: V1ObjectMeta;
|
|
1152
|
+
spec: V1CertificateSigningRequestSpec;
|
|
1153
|
+
status?: V1CertificateSigningRequestStatus;
|
|
1154
|
+
}
|
|
1155
|
+
export interface V1CertificateSigningRequestCondition {
|
|
1156
|
+
lastTransitionTime?: V1Time;
|
|
1157
|
+
lastUpdateTime?: V1Time;
|
|
1158
|
+
message?: string;
|
|
1159
|
+
reason?: string;
|
|
1160
|
+
status: string;
|
|
1161
|
+
type: string;
|
|
1162
|
+
}
|
|
1163
|
+
export interface V1CertificateSigningRequestList {
|
|
1164
|
+
apiVersion?: string;
|
|
1165
|
+
items: V1CertificateSigningRequest[];
|
|
1166
|
+
kind?: string;
|
|
1167
|
+
metadata?: V1ListMeta;
|
|
1168
|
+
}
|
|
1169
|
+
export interface V1CertificateSigningRequestSpec {
|
|
1170
|
+
expirationSeconds?: number;
|
|
1171
|
+
extra?: Record<string, string[]>;
|
|
1172
|
+
groups?: string[];
|
|
1173
|
+
request: string;
|
|
1174
|
+
signerName: string;
|
|
1175
|
+
uid?: string;
|
|
1176
|
+
usages?: string[];
|
|
1177
|
+
username?: string;
|
|
1178
|
+
}
|
|
1179
|
+
export interface V1CertificateSigningRequestStatus {
|
|
1180
|
+
certificate?: string;
|
|
1181
|
+
conditions?: V1CertificateSigningRequestCondition[];
|
|
1182
|
+
}
|
|
1183
|
+
export interface V1CinderPersistentVolumeSource {
|
|
1184
|
+
fsType?: string;
|
|
1185
|
+
readOnly?: boolean;
|
|
1186
|
+
secretRef?: V1SecretReference;
|
|
1187
|
+
volumeID: string;
|
|
1188
|
+
}
|
|
1189
|
+
export interface V1CinderVolumeSource {
|
|
1190
|
+
fsType?: string;
|
|
1191
|
+
readOnly?: boolean;
|
|
1192
|
+
secretRef?: V1LocalObjectReference;
|
|
1193
|
+
volumeID: string;
|
|
1194
|
+
}
|
|
1195
|
+
export interface V1ClientIPConfig {
|
|
1196
|
+
timeoutSeconds?: number;
|
|
1197
|
+
}
|
|
1198
|
+
export interface V1ClusterRole {
|
|
1199
|
+
aggregationRule?: V1AggregationRule;
|
|
1200
|
+
apiVersion?: string;
|
|
1201
|
+
kind?: string;
|
|
1202
|
+
metadata?: V1ObjectMeta;
|
|
1203
|
+
rules?: V1PolicyRule[];
|
|
1204
|
+
}
|
|
1205
|
+
export interface V1ClusterRoleBinding {
|
|
1206
|
+
apiVersion?: string;
|
|
1207
|
+
kind?: string;
|
|
1208
|
+
metadata?: V1ObjectMeta;
|
|
1209
|
+
roleRef: V1RoleRef;
|
|
1210
|
+
subjects?: V1RbacSubject[];
|
|
1211
|
+
}
|
|
1212
|
+
export interface V1ClusterRoleBindingList {
|
|
1213
|
+
apiVersion?: string;
|
|
1214
|
+
items: V1ClusterRoleBinding[];
|
|
1215
|
+
kind?: string;
|
|
1216
|
+
metadata?: V1ListMeta;
|
|
1217
|
+
}
|
|
1218
|
+
export interface V1ClusterRoleList {
|
|
1219
|
+
apiVersion?: string;
|
|
1220
|
+
items: V1ClusterRole[];
|
|
1221
|
+
kind?: string;
|
|
1222
|
+
metadata?: V1ListMeta;
|
|
1223
|
+
}
|
|
1224
|
+
export interface V1ClusterTrustBundleProjection {
|
|
1225
|
+
labelSelector?: V1LabelSelector;
|
|
1226
|
+
name?: string;
|
|
1227
|
+
optional?: boolean;
|
|
1228
|
+
path: string;
|
|
1229
|
+
signerName?: string;
|
|
1230
|
+
}
|
|
1231
|
+
export interface V1ComponentCondition {
|
|
1232
|
+
error?: string;
|
|
1233
|
+
message?: string;
|
|
1234
|
+
status: string;
|
|
1235
|
+
type: string;
|
|
1236
|
+
}
|
|
1237
|
+
export interface V1ComponentStatus {
|
|
1238
|
+
apiVersion?: string;
|
|
1239
|
+
conditions?: V1ComponentCondition[];
|
|
1240
|
+
kind?: string;
|
|
1241
|
+
metadata?: V1ObjectMeta;
|
|
1242
|
+
}
|
|
1243
|
+
export interface V1ComponentStatusList {
|
|
1244
|
+
apiVersion?: string;
|
|
1245
|
+
items: V1ComponentStatus[];
|
|
1246
|
+
kind?: string;
|
|
1247
|
+
metadata?: V1ListMeta;
|
|
1248
|
+
}
|
|
1249
|
+
export interface V1Condition {
|
|
1250
|
+
lastTransitionTime: V1Time;
|
|
1251
|
+
message: string;
|
|
1252
|
+
observedGeneration?: number;
|
|
1253
|
+
reason: string;
|
|
1254
|
+
status: string;
|
|
1255
|
+
type: string;
|
|
1256
|
+
}
|
|
1257
|
+
export interface V1ConfigMap {
|
|
1258
|
+
apiVersion?: string;
|
|
1259
|
+
binaryData?: Record<string, string>;
|
|
1260
|
+
data?: Record<string, string>;
|
|
1261
|
+
immutable?: boolean;
|
|
1262
|
+
kind?: string;
|
|
1263
|
+
metadata?: V1ObjectMeta;
|
|
1264
|
+
}
|
|
1265
|
+
export interface V1ConfigMapEnvSource {
|
|
1266
|
+
name?: string;
|
|
1267
|
+
optional?: boolean;
|
|
1268
|
+
}
|
|
1269
|
+
export interface V1ConfigMapKeySelector {
|
|
1270
|
+
key: string;
|
|
1271
|
+
name?: string;
|
|
1272
|
+
optional?: boolean;
|
|
1273
|
+
}
|
|
1274
|
+
export interface V1ConfigMapList {
|
|
1275
|
+
apiVersion?: string;
|
|
1276
|
+
items: V1ConfigMap[];
|
|
1277
|
+
kind?: string;
|
|
1278
|
+
metadata?: V1ListMeta;
|
|
1279
|
+
}
|
|
1280
|
+
export interface V1ConfigMapNodeConfigSource {
|
|
1281
|
+
kubeletConfigKey: string;
|
|
1282
|
+
name: string;
|
|
1283
|
+
namespace: string;
|
|
1284
|
+
resourceVersion?: string;
|
|
1285
|
+
uid?: string;
|
|
1286
|
+
}
|
|
1287
|
+
export interface V1ConfigMapProjection {
|
|
1288
|
+
items?: V1KeyToPath[];
|
|
1289
|
+
name?: string;
|
|
1290
|
+
optional?: boolean;
|
|
1291
|
+
}
|
|
1292
|
+
export interface V1ConfigMapVolumeSource {
|
|
1293
|
+
defaultMode?: number;
|
|
1294
|
+
items?: V1KeyToPath[];
|
|
1295
|
+
name?: string;
|
|
1296
|
+
optional?: boolean;
|
|
1297
|
+
}
|
|
1298
|
+
export interface V1Container {
|
|
1299
|
+
args?: string[];
|
|
1300
|
+
command?: string[];
|
|
1301
|
+
env?: V1EnvVar[];
|
|
1302
|
+
envFrom?: V1EnvFromSource[];
|
|
1303
|
+
image?: string;
|
|
1304
|
+
imagePullPolicy?: string;
|
|
1305
|
+
lifecycle?: V1Lifecycle;
|
|
1306
|
+
livenessProbe?: V1Probe;
|
|
1307
|
+
name: string;
|
|
1308
|
+
ports?: V1ContainerPort[];
|
|
1309
|
+
readinessProbe?: V1Probe;
|
|
1310
|
+
resizePolicy?: V1ContainerResizePolicy[];
|
|
1311
|
+
resources?: V1ResourceRequirements;
|
|
1312
|
+
restartPolicy?: string;
|
|
1313
|
+
restartPolicyRules?: V1ContainerRestartRule[];
|
|
1314
|
+
securityContext?: V1SecurityContext;
|
|
1315
|
+
startupProbe?: V1Probe;
|
|
1316
|
+
stdin?: boolean;
|
|
1317
|
+
stdinOnce?: boolean;
|
|
1318
|
+
terminationMessagePath?: string;
|
|
1319
|
+
terminationMessagePolicy?: string;
|
|
1320
|
+
tty?: boolean;
|
|
1321
|
+
volumeDevices?: V1VolumeDevice[];
|
|
1322
|
+
volumeMounts?: V1VolumeMount[];
|
|
1323
|
+
workingDir?: string;
|
|
1324
|
+
}
|
|
1325
|
+
export interface V1ContainerExtendedResourceRequest {
|
|
1326
|
+
containerName: string;
|
|
1327
|
+
requestName: string;
|
|
1328
|
+
resourceName: string;
|
|
1329
|
+
}
|
|
1330
|
+
export interface V1ContainerImage {
|
|
1331
|
+
names?: string[];
|
|
1332
|
+
sizeBytes?: number;
|
|
1333
|
+
}
|
|
1334
|
+
export interface V1ContainerPort {
|
|
1335
|
+
containerPort: number;
|
|
1336
|
+
hostIP?: string;
|
|
1337
|
+
hostPort?: number;
|
|
1338
|
+
name?: string;
|
|
1339
|
+
protocol?: string;
|
|
1340
|
+
}
|
|
1341
|
+
export interface V1ContainerResizePolicy {
|
|
1342
|
+
resourceName: string;
|
|
1343
|
+
restartPolicy: string;
|
|
1344
|
+
}
|
|
1345
|
+
export interface V1ContainerRestartRule {
|
|
1346
|
+
action: string;
|
|
1347
|
+
exitCodes?: V1ContainerRestartRuleOnExitCodes;
|
|
1348
|
+
}
|
|
1349
|
+
export interface V1ContainerRestartRuleOnExitCodes {
|
|
1350
|
+
operator: string;
|
|
1351
|
+
values?: number[];
|
|
1352
|
+
}
|
|
1353
|
+
export interface V1ContainerState {
|
|
1354
|
+
running?: V1ContainerStateRunning;
|
|
1355
|
+
terminated?: V1ContainerStateTerminated;
|
|
1356
|
+
waiting?: V1ContainerStateWaiting;
|
|
1357
|
+
}
|
|
1358
|
+
export interface V1ContainerStateRunning {
|
|
1359
|
+
startedAt?: V1Time;
|
|
1360
|
+
}
|
|
1361
|
+
export interface V1ContainerStateTerminated {
|
|
1362
|
+
containerID?: string;
|
|
1363
|
+
exitCode: number;
|
|
1364
|
+
finishedAt?: V1Time;
|
|
1365
|
+
message?: string;
|
|
1366
|
+
reason?: string;
|
|
1367
|
+
signal?: number;
|
|
1368
|
+
startedAt?: V1Time;
|
|
1369
|
+
}
|
|
1370
|
+
export interface V1ContainerStateWaiting {
|
|
1371
|
+
message?: string;
|
|
1372
|
+
reason?: string;
|
|
1373
|
+
}
|
|
1374
|
+
export interface V1ContainerStatus {
|
|
1375
|
+
allocatedResources?: Record<string, Quantity>;
|
|
1376
|
+
allocatedResourcesStatus?: V1ResourceStatus[];
|
|
1377
|
+
containerID?: string;
|
|
1378
|
+
image: string;
|
|
1379
|
+
imageID: string;
|
|
1380
|
+
lastState?: V1ContainerState;
|
|
1381
|
+
name: string;
|
|
1382
|
+
ready: boolean;
|
|
1383
|
+
resources?: V1ResourceRequirements;
|
|
1384
|
+
restartCount: number;
|
|
1385
|
+
started?: boolean;
|
|
1386
|
+
state?: V1ContainerState;
|
|
1387
|
+
stopSignal?: string;
|
|
1388
|
+
user?: V1ContainerUser;
|
|
1389
|
+
volumeMounts?: V1VolumeMountStatus[];
|
|
1390
|
+
}
|
|
1391
|
+
export interface V1ContainerUser {
|
|
1392
|
+
linux?: V1LinuxContainerUser;
|
|
1393
|
+
}
|
|
1394
|
+
export interface V1ControllerRevision {
|
|
1395
|
+
apiVersion?: string;
|
|
1396
|
+
data?: RawExtension;
|
|
1397
|
+
kind?: string;
|
|
1398
|
+
metadata?: V1ObjectMeta;
|
|
1399
|
+
revision: number;
|
|
1400
|
+
}
|
|
1401
|
+
export interface V1ControllerRevisionList {
|
|
1402
|
+
apiVersion?: string;
|
|
1403
|
+
items: V1ControllerRevision[];
|
|
1404
|
+
kind?: string;
|
|
1405
|
+
metadata?: V1ListMeta;
|
|
1406
|
+
}
|
|
1407
|
+
export interface V1CoreEndpointPort {
|
|
1408
|
+
appProtocol?: string;
|
|
1409
|
+
name?: string;
|
|
1410
|
+
port: number;
|
|
1411
|
+
protocol?: string;
|
|
1412
|
+
}
|
|
1413
|
+
export interface V1CoreEvent {
|
|
1414
|
+
action?: string;
|
|
1415
|
+
apiVersion?: string;
|
|
1416
|
+
count?: number;
|
|
1417
|
+
eventTime?: V1MicroTime;
|
|
1418
|
+
firstTimestamp?: V1Time;
|
|
1419
|
+
involvedObject: V1ObjectReference;
|
|
1420
|
+
kind?: string;
|
|
1421
|
+
lastTimestamp?: V1Time;
|
|
1422
|
+
message?: string;
|
|
1423
|
+
metadata: V1ObjectMeta;
|
|
1424
|
+
reason?: string;
|
|
1425
|
+
related?: V1ObjectReference;
|
|
1426
|
+
reportingComponent?: string;
|
|
1427
|
+
reportingInstance?: string;
|
|
1428
|
+
series?: V1CoreEventSeries;
|
|
1429
|
+
source?: V1EventSource;
|
|
1430
|
+
type?: string;
|
|
1431
|
+
}
|
|
1432
|
+
export interface V1CoreEventList {
|
|
1433
|
+
apiVersion?: string;
|
|
1434
|
+
items: V1CoreEvent[];
|
|
1435
|
+
kind?: string;
|
|
1436
|
+
metadata?: V1ListMeta;
|
|
1437
|
+
}
|
|
1438
|
+
export interface V1CoreEventSeries {
|
|
1439
|
+
count?: number;
|
|
1440
|
+
lastObservedTime?: V1MicroTime;
|
|
1441
|
+
}
|
|
1442
|
+
export interface V1CoreResourceClaim {
|
|
1443
|
+
name: string;
|
|
1444
|
+
request?: string;
|
|
1445
|
+
}
|
|
1446
|
+
export interface V1Counter {
|
|
1447
|
+
value: Quantity;
|
|
1448
|
+
}
|
|
1449
|
+
export interface V1CounterSet {
|
|
1450
|
+
counters: Record<string, V1Counter>;
|
|
1451
|
+
name: string;
|
|
1452
|
+
}
|
|
1453
|
+
export interface V1CronJob {
|
|
1454
|
+
apiVersion?: string;
|
|
1455
|
+
kind?: string;
|
|
1456
|
+
metadata?: V1ObjectMeta;
|
|
1457
|
+
spec?: V1CronJobSpec;
|
|
1458
|
+
status?: V1CronJobStatus;
|
|
1459
|
+
}
|
|
1460
|
+
export interface V1CronJobList {
|
|
1461
|
+
apiVersion?: string;
|
|
1462
|
+
items: V1CronJob[];
|
|
1463
|
+
kind?: string;
|
|
1464
|
+
metadata?: V1ListMeta;
|
|
1465
|
+
}
|
|
1466
|
+
export interface V1CronJobSpec {
|
|
1467
|
+
concurrencyPolicy?: string;
|
|
1468
|
+
failedJobsHistoryLimit?: number;
|
|
1469
|
+
jobTemplate: V1JobTemplateSpec;
|
|
1470
|
+
schedule: string;
|
|
1471
|
+
startingDeadlineSeconds?: number;
|
|
1472
|
+
successfulJobsHistoryLimit?: number;
|
|
1473
|
+
suspend?: boolean;
|
|
1474
|
+
timeZone?: string;
|
|
1475
|
+
}
|
|
1476
|
+
export interface V1CronJobStatus {
|
|
1477
|
+
active?: V1ObjectReference[];
|
|
1478
|
+
lastScheduleTime?: V1Time;
|
|
1479
|
+
lastSuccessfulTime?: V1Time;
|
|
1480
|
+
}
|
|
1481
|
+
export interface V1CrossVersionObjectReference {
|
|
1482
|
+
apiVersion?: string;
|
|
1483
|
+
kind: string;
|
|
1484
|
+
name: string;
|
|
1485
|
+
}
|
|
1486
|
+
export interface V1CSIDriver {
|
|
1487
|
+
apiVersion?: string;
|
|
1488
|
+
kind?: string;
|
|
1489
|
+
metadata?: V1ObjectMeta;
|
|
1490
|
+
spec: V1CSIDriverSpec;
|
|
1491
|
+
}
|
|
1492
|
+
export interface V1CSIDriverList {
|
|
1493
|
+
apiVersion?: string;
|
|
1494
|
+
items: V1CSIDriver[];
|
|
1495
|
+
kind?: string;
|
|
1496
|
+
metadata?: V1ListMeta;
|
|
1497
|
+
}
|
|
1498
|
+
export interface V1CSIDriverSpec {
|
|
1499
|
+
attachRequired?: boolean;
|
|
1500
|
+
fsGroupPolicy?: string;
|
|
1501
|
+
nodeAllocatableUpdatePeriodSeconds?: number;
|
|
1502
|
+
podInfoOnMount?: boolean;
|
|
1503
|
+
requiresRepublish?: boolean;
|
|
1504
|
+
seLinuxMount?: boolean;
|
|
1505
|
+
storageCapacity?: boolean;
|
|
1506
|
+
tokenRequests?: V1StorageTokenRequest[];
|
|
1507
|
+
volumeLifecycleModes?: string[];
|
|
1508
|
+
}
|
|
1509
|
+
export interface V1CSINode {
|
|
1510
|
+
apiVersion?: string;
|
|
1511
|
+
kind?: string;
|
|
1512
|
+
metadata?: V1ObjectMeta;
|
|
1513
|
+
spec: V1CSINodeSpec;
|
|
1514
|
+
}
|
|
1515
|
+
export interface V1CSINodeDriver {
|
|
1516
|
+
allocatable?: V1VolumeNodeResources;
|
|
1517
|
+
name: string;
|
|
1518
|
+
nodeID: string;
|
|
1519
|
+
topologyKeys?: string[];
|
|
1520
|
+
}
|
|
1521
|
+
export interface V1CSINodeList {
|
|
1522
|
+
apiVersion?: string;
|
|
1523
|
+
items: V1CSINode[];
|
|
1524
|
+
kind?: string;
|
|
1525
|
+
metadata?: V1ListMeta;
|
|
1526
|
+
}
|
|
1527
|
+
export interface V1CSINodeSpec {
|
|
1528
|
+
drivers: V1CSINodeDriver[];
|
|
1529
|
+
}
|
|
1530
|
+
export interface V1CSIPersistentVolumeSource {
|
|
1531
|
+
controllerExpandSecretRef?: V1SecretReference;
|
|
1532
|
+
controllerPublishSecretRef?: V1SecretReference;
|
|
1533
|
+
driver: string;
|
|
1534
|
+
fsType?: string;
|
|
1535
|
+
nodeExpandSecretRef?: V1SecretReference;
|
|
1536
|
+
nodePublishSecretRef?: V1SecretReference;
|
|
1537
|
+
nodeStageSecretRef?: V1SecretReference;
|
|
1538
|
+
readOnly?: boolean;
|
|
1539
|
+
volumeAttributes?: Record<string, string>;
|
|
1540
|
+
volumeHandle: string;
|
|
1541
|
+
}
|
|
1542
|
+
export interface V1CSIStorageCapacity {
|
|
1543
|
+
apiVersion?: string;
|
|
1544
|
+
capacity?: Quantity;
|
|
1545
|
+
kind?: string;
|
|
1546
|
+
maximumVolumeSize?: Quantity;
|
|
1547
|
+
metadata?: V1ObjectMeta;
|
|
1548
|
+
nodeTopology?: V1LabelSelector;
|
|
1549
|
+
storageClassName: string;
|
|
1550
|
+
}
|
|
1551
|
+
export interface V1CSIStorageCapacityList {
|
|
1552
|
+
apiVersion?: string;
|
|
1553
|
+
items: V1CSIStorageCapacity[];
|
|
1554
|
+
kind?: string;
|
|
1555
|
+
metadata?: V1ListMeta;
|
|
1556
|
+
}
|
|
1557
|
+
export interface V1CSIVolumeSource {
|
|
1558
|
+
driver: string;
|
|
1559
|
+
fsType?: string;
|
|
1560
|
+
nodePublishSecretRef?: V1LocalObjectReference;
|
|
1561
|
+
readOnly?: boolean;
|
|
1562
|
+
volumeAttributes?: Record<string, string>;
|
|
1563
|
+
}
|
|
1564
|
+
export interface V1CustomResourceColumnDefinition {
|
|
1565
|
+
description?: string;
|
|
1566
|
+
format?: string;
|
|
1567
|
+
jsonPath: string;
|
|
1568
|
+
name: string;
|
|
1569
|
+
priority?: number;
|
|
1570
|
+
type: string;
|
|
1571
|
+
}
|
|
1572
|
+
export interface V1CustomResourceConversion {
|
|
1573
|
+
strategy: string;
|
|
1574
|
+
webhook?: V1WebhookConversion;
|
|
1575
|
+
}
|
|
1576
|
+
export interface V1CustomResourceDefinition {
|
|
1577
|
+
apiVersion?: string;
|
|
1578
|
+
kind?: string;
|
|
1579
|
+
metadata?: V1ObjectMeta;
|
|
1580
|
+
spec: V1CustomResourceDefinitionSpec;
|
|
1581
|
+
status?: V1CustomResourceDefinitionStatus;
|
|
1582
|
+
}
|
|
1583
|
+
export interface V1CustomResourceDefinitionCondition {
|
|
1584
|
+
lastTransitionTime?: V1Time;
|
|
1585
|
+
message?: string;
|
|
1586
|
+
reason?: string;
|
|
1587
|
+
status: string;
|
|
1588
|
+
type: string;
|
|
1589
|
+
}
|
|
1590
|
+
export interface V1CustomResourceDefinitionList {
|
|
1591
|
+
apiVersion?: string;
|
|
1592
|
+
items: V1CustomResourceDefinition[];
|
|
1593
|
+
kind?: string;
|
|
1594
|
+
metadata?: V1ListMeta;
|
|
1595
|
+
}
|
|
1596
|
+
export interface V1CustomResourceDefinitionNames {
|
|
1597
|
+
categories?: string[];
|
|
1598
|
+
kind: string;
|
|
1599
|
+
listKind?: string;
|
|
1600
|
+
plural: string;
|
|
1601
|
+
shortNames?: string[];
|
|
1602
|
+
singular?: string;
|
|
1603
|
+
}
|
|
1604
|
+
export interface V1CustomResourceDefinitionSpec {
|
|
1605
|
+
conversion?: V1CustomResourceConversion;
|
|
1606
|
+
group: string;
|
|
1607
|
+
names: V1CustomResourceDefinitionNames;
|
|
1608
|
+
preserveUnknownFields?: boolean;
|
|
1609
|
+
scope: string;
|
|
1610
|
+
versions: V1CustomResourceDefinitionVersion[];
|
|
1611
|
+
}
|
|
1612
|
+
export interface V1CustomResourceDefinitionStatus {
|
|
1613
|
+
acceptedNames?: V1CustomResourceDefinitionNames;
|
|
1614
|
+
conditions?: V1CustomResourceDefinitionCondition[];
|
|
1615
|
+
storedVersions?: string[];
|
|
1616
|
+
}
|
|
1617
|
+
export interface V1CustomResourceDefinitionVersion {
|
|
1618
|
+
additionalPrinterColumns?: V1CustomResourceColumnDefinition[];
|
|
1619
|
+
deprecated?: boolean;
|
|
1620
|
+
deprecationWarning?: string;
|
|
1621
|
+
name: string;
|
|
1622
|
+
schema?: V1CustomResourceValidation;
|
|
1623
|
+
selectableFields?: V1SelectableField[];
|
|
1624
|
+
served: boolean;
|
|
1625
|
+
storage: boolean;
|
|
1626
|
+
subresources?: V1CustomResourceSubresources;
|
|
1627
|
+
}
|
|
1628
|
+
export interface V1CustomResourceSubresources {
|
|
1629
|
+
scale?: V1CustomResourceSubresourceScale;
|
|
1630
|
+
status?: V1CustomResourceSubresourceStatus;
|
|
1631
|
+
}
|
|
1632
|
+
export interface V1CustomResourceSubresourceScale {
|
|
1633
|
+
labelSelectorPath?: string;
|
|
1634
|
+
specReplicasPath: string;
|
|
1635
|
+
statusReplicasPath: string;
|
|
1636
|
+
}
|
|
1637
|
+
export interface V1CustomResourceSubresourceStatus {
|
|
1638
|
+
[key: string]: unknown;
|
|
1639
|
+
}
|
|
1640
|
+
export interface V1CustomResourceValidation {
|
|
1641
|
+
openAPIV3Schema?: V1JSONSchemaProps;
|
|
1642
|
+
}
|
|
1643
|
+
export interface V1DaemonEndpoint {
|
|
1644
|
+
Port: number;
|
|
1645
|
+
}
|
|
1646
|
+
export interface V1DaemonSet {
|
|
1647
|
+
apiVersion?: string;
|
|
1648
|
+
kind?: string;
|
|
1649
|
+
metadata?: V1ObjectMeta;
|
|
1650
|
+
spec?: V1DaemonSetSpec;
|
|
1651
|
+
status?: V1DaemonSetStatus;
|
|
1652
|
+
}
|
|
1653
|
+
export interface V1DaemonSetCondition {
|
|
1654
|
+
lastTransitionTime?: V1Time;
|
|
1655
|
+
message?: string;
|
|
1656
|
+
reason?: string;
|
|
1657
|
+
status: string;
|
|
1658
|
+
type: string;
|
|
1659
|
+
}
|
|
1660
|
+
export interface V1DaemonSetList {
|
|
1661
|
+
apiVersion?: string;
|
|
1662
|
+
items: V1DaemonSet[];
|
|
1663
|
+
kind?: string;
|
|
1664
|
+
metadata?: V1ListMeta;
|
|
1665
|
+
}
|
|
1666
|
+
export interface V1DaemonSetSpec {
|
|
1667
|
+
minReadySeconds?: number;
|
|
1668
|
+
revisionHistoryLimit?: number;
|
|
1669
|
+
selector: V1LabelSelector;
|
|
1670
|
+
template: V1PodTemplateSpec;
|
|
1671
|
+
updateStrategy?: V1DaemonSetUpdateStrategy;
|
|
1672
|
+
}
|
|
1673
|
+
export interface V1DaemonSetStatus {
|
|
1674
|
+
collisionCount?: number;
|
|
1675
|
+
conditions?: V1DaemonSetCondition[];
|
|
1676
|
+
currentNumberScheduled: number;
|
|
1677
|
+
desiredNumberScheduled: number;
|
|
1678
|
+
numberAvailable?: number;
|
|
1679
|
+
numberMisscheduled: number;
|
|
1680
|
+
numberReady: number;
|
|
1681
|
+
numberUnavailable?: number;
|
|
1682
|
+
observedGeneration?: number;
|
|
1683
|
+
updatedNumberScheduled?: number;
|
|
1684
|
+
}
|
|
1685
|
+
export interface V1DaemonSetUpdateStrategy {
|
|
1686
|
+
rollingUpdate?: V1RollingUpdateDaemonSet;
|
|
1687
|
+
type?: string;
|
|
1688
|
+
}
|
|
1689
|
+
export interface V1DeleteOptions {
|
|
1690
|
+
apiVersion?: string;
|
|
1691
|
+
dryRun?: string[];
|
|
1692
|
+
gracePeriodSeconds?: number;
|
|
1693
|
+
ignoreStoreReadErrorWithClusterBreakingPotential?: boolean;
|
|
1694
|
+
kind?: string;
|
|
1695
|
+
orphanDependents?: boolean;
|
|
1696
|
+
preconditions?: V1Preconditions;
|
|
1697
|
+
propagationPolicy?: string;
|
|
1698
|
+
}
|
|
1699
|
+
export interface V1Deployment {
|
|
1700
|
+
apiVersion?: string;
|
|
1701
|
+
kind?: string;
|
|
1702
|
+
metadata?: V1ObjectMeta;
|
|
1703
|
+
spec?: V1DeploymentSpec;
|
|
1704
|
+
status?: V1DeploymentStatus;
|
|
1705
|
+
}
|
|
1706
|
+
export interface V1DeploymentCondition {
|
|
1707
|
+
lastTransitionTime?: V1Time;
|
|
1708
|
+
lastUpdateTime?: V1Time;
|
|
1709
|
+
message?: string;
|
|
1710
|
+
reason?: string;
|
|
1711
|
+
status: string;
|
|
1712
|
+
type: string;
|
|
1713
|
+
}
|
|
1714
|
+
export interface V1DeploymentList {
|
|
1715
|
+
apiVersion?: string;
|
|
1716
|
+
items: V1Deployment[];
|
|
1717
|
+
kind?: string;
|
|
1718
|
+
metadata?: V1ListMeta;
|
|
1719
|
+
}
|
|
1720
|
+
export interface V1DeploymentSpec {
|
|
1721
|
+
minReadySeconds?: number;
|
|
1722
|
+
paused?: boolean;
|
|
1723
|
+
progressDeadlineSeconds?: number;
|
|
1724
|
+
replicas?: number;
|
|
1725
|
+
revisionHistoryLimit?: number;
|
|
1726
|
+
selector: V1LabelSelector;
|
|
1727
|
+
strategy?: V1DeploymentStrategy;
|
|
1728
|
+
template: V1PodTemplateSpec;
|
|
1729
|
+
}
|
|
1730
|
+
export interface V1DeploymentStatus {
|
|
1731
|
+
availableReplicas?: number;
|
|
1732
|
+
collisionCount?: number;
|
|
1733
|
+
conditions?: V1DeploymentCondition[];
|
|
1734
|
+
observedGeneration?: number;
|
|
1735
|
+
readyReplicas?: number;
|
|
1736
|
+
replicas?: number;
|
|
1737
|
+
terminatingReplicas?: number;
|
|
1738
|
+
unavailableReplicas?: number;
|
|
1739
|
+
updatedReplicas?: number;
|
|
1740
|
+
}
|
|
1741
|
+
export interface V1DeploymentStrategy {
|
|
1742
|
+
rollingUpdate?: V1RollingUpdateDeployment;
|
|
1743
|
+
type?: string;
|
|
1744
|
+
}
|
|
1745
|
+
export interface V1Device {
|
|
1746
|
+
allNodes?: boolean;
|
|
1747
|
+
allowMultipleAllocations?: boolean;
|
|
1748
|
+
attributes?: Record<string, V1DeviceAttribute>;
|
|
1749
|
+
bindingConditions?: string[];
|
|
1750
|
+
bindingFailureConditions?: string[];
|
|
1751
|
+
bindsToNode?: boolean;
|
|
1752
|
+
capacity?: Record<string, V1DeviceCapacity>;
|
|
1753
|
+
consumesCounters?: V1DeviceCounterConsumption[];
|
|
1754
|
+
name: string;
|
|
1755
|
+
nodeName?: string;
|
|
1756
|
+
nodeSelector?: V1NodeSelector;
|
|
1757
|
+
taints?: V1DeviceTaint[];
|
|
1758
|
+
}
|
|
1759
|
+
export interface V1DeviceAllocationConfiguration {
|
|
1760
|
+
opaque?: V1OpaqueDeviceConfiguration;
|
|
1761
|
+
requests?: string[];
|
|
1762
|
+
source: string;
|
|
1763
|
+
}
|
|
1764
|
+
export interface V1DeviceAllocationResult {
|
|
1765
|
+
config?: V1DeviceAllocationConfiguration[];
|
|
1766
|
+
results?: V1DeviceRequestAllocationResult[];
|
|
1767
|
+
}
|
|
1768
|
+
export interface V1DeviceAttribute {
|
|
1769
|
+
bool?: boolean;
|
|
1770
|
+
int?: number;
|
|
1771
|
+
string?: string;
|
|
1772
|
+
version?: string;
|
|
1773
|
+
}
|
|
1774
|
+
export interface V1DeviceCapacity {
|
|
1775
|
+
requestPolicy?: V1CapacityRequestPolicy;
|
|
1776
|
+
value: Quantity;
|
|
1777
|
+
}
|
|
1778
|
+
export interface V1DeviceClaim {
|
|
1779
|
+
config?: V1DeviceClaimConfiguration[];
|
|
1780
|
+
constraints?: V1DeviceConstraint[];
|
|
1781
|
+
requests?: V1DeviceRequest[];
|
|
1782
|
+
}
|
|
1783
|
+
export interface V1DeviceClaimConfiguration {
|
|
1784
|
+
opaque?: V1OpaqueDeviceConfiguration;
|
|
1785
|
+
requests?: string[];
|
|
1786
|
+
}
|
|
1787
|
+
export interface V1DeviceClass {
|
|
1788
|
+
apiVersion?: string;
|
|
1789
|
+
kind?: string;
|
|
1790
|
+
metadata?: V1ObjectMeta;
|
|
1791
|
+
spec: V1DeviceClassSpec;
|
|
1792
|
+
}
|
|
1793
|
+
export interface V1DeviceClassConfiguration {
|
|
1794
|
+
opaque?: V1OpaqueDeviceConfiguration;
|
|
1795
|
+
}
|
|
1796
|
+
export interface V1DeviceClassList {
|
|
1797
|
+
apiVersion?: string;
|
|
1798
|
+
items: V1DeviceClass[];
|
|
1799
|
+
kind?: string;
|
|
1800
|
+
metadata?: V1ListMeta;
|
|
1801
|
+
}
|
|
1802
|
+
export interface V1DeviceClassSpec {
|
|
1803
|
+
config?: V1DeviceClassConfiguration[];
|
|
1804
|
+
extendedResourceName?: string;
|
|
1805
|
+
selectors?: V1DeviceSelector[];
|
|
1806
|
+
}
|
|
1807
|
+
export interface V1DeviceConstraint {
|
|
1808
|
+
distinctAttribute?: string;
|
|
1809
|
+
matchAttribute?: string;
|
|
1810
|
+
requests?: string[];
|
|
1811
|
+
}
|
|
1812
|
+
export interface V1DeviceCounterConsumption {
|
|
1813
|
+
counters: Record<string, V1Counter>;
|
|
1814
|
+
counterSet: string;
|
|
1815
|
+
}
|
|
1816
|
+
export interface V1DeviceRequest {
|
|
1817
|
+
exactly?: V1ExactDeviceRequest;
|
|
1818
|
+
firstAvailable?: V1DeviceSubRequest[];
|
|
1819
|
+
name: string;
|
|
1820
|
+
}
|
|
1821
|
+
export interface V1DeviceRequestAllocationResult {
|
|
1822
|
+
adminAccess?: boolean;
|
|
1823
|
+
bindingConditions?: string[];
|
|
1824
|
+
bindingFailureConditions?: string[];
|
|
1825
|
+
consumedCapacity?: Record<string, Quantity>;
|
|
1826
|
+
device: string;
|
|
1827
|
+
driver: string;
|
|
1828
|
+
pool: string;
|
|
1829
|
+
request: string;
|
|
1830
|
+
shareID?: string;
|
|
1831
|
+
tolerations?: V1DeviceToleration[];
|
|
1832
|
+
}
|
|
1833
|
+
export interface V1DeviceSelector {
|
|
1834
|
+
cel?: V1CELDeviceSelector;
|
|
1835
|
+
}
|
|
1836
|
+
export interface V1DeviceSubRequest {
|
|
1837
|
+
allocationMode?: string;
|
|
1838
|
+
capacity?: V1CapacityRequirements;
|
|
1839
|
+
count?: number;
|
|
1840
|
+
deviceClassName: string;
|
|
1841
|
+
name: string;
|
|
1842
|
+
selectors?: V1DeviceSelector[];
|
|
1843
|
+
tolerations?: V1DeviceToleration[];
|
|
1844
|
+
}
|
|
1845
|
+
export interface V1DeviceTaint {
|
|
1846
|
+
effect: string;
|
|
1847
|
+
key: string;
|
|
1848
|
+
timeAdded?: V1Time;
|
|
1849
|
+
value?: string;
|
|
1850
|
+
}
|
|
1851
|
+
export interface V1DeviceToleration {
|
|
1852
|
+
effect?: string;
|
|
1853
|
+
key?: string;
|
|
1854
|
+
operator?: string;
|
|
1855
|
+
tolerationSeconds?: number;
|
|
1856
|
+
value?: string;
|
|
1857
|
+
}
|
|
1858
|
+
export interface V1DiscoveryEndpointPort {
|
|
1859
|
+
appProtocol?: string;
|
|
1860
|
+
name?: string;
|
|
1861
|
+
port?: number;
|
|
1862
|
+
protocol?: string;
|
|
1863
|
+
}
|
|
1864
|
+
export interface V1DownwardAPIProjection {
|
|
1865
|
+
items?: V1DownwardAPIVolumeFile[];
|
|
1866
|
+
}
|
|
1867
|
+
export interface V1DownwardAPIVolumeFile {
|
|
1868
|
+
fieldRef?: V1ObjectFieldSelector;
|
|
1869
|
+
mode?: number;
|
|
1870
|
+
path: string;
|
|
1871
|
+
resourceFieldRef?: V1ResourceFieldSelector;
|
|
1872
|
+
}
|
|
1873
|
+
export interface V1DownwardAPIVolumeSource {
|
|
1874
|
+
defaultMode?: number;
|
|
1875
|
+
items?: V1DownwardAPIVolumeFile[];
|
|
1876
|
+
}
|
|
1877
|
+
export interface V1EmptyDirVolumeSource {
|
|
1878
|
+
medium?: string;
|
|
1879
|
+
sizeLimit?: Quantity;
|
|
1880
|
+
}
|
|
1881
|
+
export interface V1Endpoint {
|
|
1882
|
+
addresses: string[];
|
|
1883
|
+
conditions?: V1EndpointConditions;
|
|
1884
|
+
deprecatedTopology?: Record<string, string>;
|
|
1885
|
+
hints?: V1EndpointHints;
|
|
1886
|
+
hostname?: string;
|
|
1887
|
+
nodeName?: string;
|
|
1888
|
+
targetRef?: V1ObjectReference;
|
|
1889
|
+
zone?: string;
|
|
1890
|
+
}
|
|
1891
|
+
export interface V1EndpointAddress {
|
|
1892
|
+
hostname?: string;
|
|
1893
|
+
ip: string;
|
|
1894
|
+
nodeName?: string;
|
|
1895
|
+
targetRef?: V1ObjectReference;
|
|
1896
|
+
}
|
|
1897
|
+
export interface V1EndpointConditions {
|
|
1898
|
+
ready?: boolean;
|
|
1899
|
+
serving?: boolean;
|
|
1900
|
+
terminating?: boolean;
|
|
1901
|
+
}
|
|
1902
|
+
export interface V1EndpointHints {
|
|
1903
|
+
forNodes?: V1ForNode[];
|
|
1904
|
+
forZones?: V1ForZone[];
|
|
1905
|
+
}
|
|
1906
|
+
export interface V1Endpoints {
|
|
1907
|
+
apiVersion?: string;
|
|
1908
|
+
kind?: string;
|
|
1909
|
+
metadata?: V1ObjectMeta;
|
|
1910
|
+
subsets?: V1EndpointSubset[];
|
|
1911
|
+
}
|
|
1912
|
+
export interface V1EndpointSlice {
|
|
1913
|
+
addressType: string;
|
|
1914
|
+
apiVersion?: string;
|
|
1915
|
+
endpoints: V1Endpoint[];
|
|
1916
|
+
kind?: string;
|
|
1917
|
+
metadata?: V1ObjectMeta;
|
|
1918
|
+
ports?: V1DiscoveryEndpointPort[];
|
|
1919
|
+
}
|
|
1920
|
+
export interface V1EndpointSliceList {
|
|
1921
|
+
apiVersion?: string;
|
|
1922
|
+
items: V1EndpointSlice[];
|
|
1923
|
+
kind?: string;
|
|
1924
|
+
metadata?: V1ListMeta;
|
|
1925
|
+
}
|
|
1926
|
+
export interface V1EndpointsList {
|
|
1927
|
+
apiVersion?: string;
|
|
1928
|
+
items: V1Endpoints[];
|
|
1929
|
+
kind?: string;
|
|
1930
|
+
metadata?: V1ListMeta;
|
|
1931
|
+
}
|
|
1932
|
+
export interface V1EndpointSubset {
|
|
1933
|
+
addresses?: V1EndpointAddress[];
|
|
1934
|
+
notReadyAddresses?: V1EndpointAddress[];
|
|
1935
|
+
ports?: V1CoreEndpointPort[];
|
|
1936
|
+
}
|
|
1937
|
+
export interface V1EnvFromSource {
|
|
1938
|
+
configMapRef?: V1ConfigMapEnvSource;
|
|
1939
|
+
prefix?: string;
|
|
1940
|
+
secretRef?: V1SecretEnvSource;
|
|
1941
|
+
}
|
|
1942
|
+
export interface V1EnvVar {
|
|
1943
|
+
name: string;
|
|
1944
|
+
value?: string;
|
|
1945
|
+
valueFrom?: V1EnvVarSource;
|
|
1946
|
+
}
|
|
1947
|
+
export interface V1EnvVarSource {
|
|
1948
|
+
configMapKeyRef?: V1ConfigMapKeySelector;
|
|
1949
|
+
fieldRef?: V1ObjectFieldSelector;
|
|
1950
|
+
fileKeyRef?: V1FileKeySelector;
|
|
1951
|
+
resourceFieldRef?: V1ResourceFieldSelector;
|
|
1952
|
+
secretKeyRef?: V1SecretKeySelector;
|
|
1953
|
+
}
|
|
1954
|
+
export interface V1EphemeralContainer {
|
|
1955
|
+
args?: string[];
|
|
1956
|
+
command?: string[];
|
|
1957
|
+
env?: V1EnvVar[];
|
|
1958
|
+
envFrom?: V1EnvFromSource[];
|
|
1959
|
+
image?: string;
|
|
1960
|
+
imagePullPolicy?: string;
|
|
1961
|
+
lifecycle?: V1Lifecycle;
|
|
1962
|
+
livenessProbe?: V1Probe;
|
|
1963
|
+
name: string;
|
|
1964
|
+
ports?: V1ContainerPort[];
|
|
1965
|
+
readinessProbe?: V1Probe;
|
|
1966
|
+
resizePolicy?: V1ContainerResizePolicy[];
|
|
1967
|
+
resources?: V1ResourceRequirements;
|
|
1968
|
+
restartPolicy?: string;
|
|
1969
|
+
restartPolicyRules?: V1ContainerRestartRule[];
|
|
1970
|
+
securityContext?: V1SecurityContext;
|
|
1971
|
+
startupProbe?: V1Probe;
|
|
1972
|
+
stdin?: boolean;
|
|
1973
|
+
stdinOnce?: boolean;
|
|
1974
|
+
targetContainerName?: string;
|
|
1975
|
+
terminationMessagePath?: string;
|
|
1976
|
+
terminationMessagePolicy?: string;
|
|
1977
|
+
tty?: boolean;
|
|
1978
|
+
volumeDevices?: V1VolumeDevice[];
|
|
1979
|
+
volumeMounts?: V1VolumeMount[];
|
|
1980
|
+
workingDir?: string;
|
|
1981
|
+
}
|
|
1982
|
+
export interface V1EphemeralVolumeSource {
|
|
1983
|
+
volumeClaimTemplate?: V1PersistentVolumeClaimTemplate;
|
|
1984
|
+
}
|
|
1985
|
+
export interface V1EventsEvent {
|
|
1986
|
+
action?: string;
|
|
1987
|
+
apiVersion?: string;
|
|
1988
|
+
deprecatedCount?: number;
|
|
1989
|
+
deprecatedFirstTimestamp?: V1Time;
|
|
1990
|
+
deprecatedLastTimestamp?: V1Time;
|
|
1991
|
+
deprecatedSource?: V1EventSource;
|
|
1992
|
+
eventTime: V1MicroTime;
|
|
1993
|
+
kind?: string;
|
|
1994
|
+
metadata?: V1ObjectMeta;
|
|
1995
|
+
note?: string;
|
|
1996
|
+
reason?: string;
|
|
1997
|
+
regarding?: V1ObjectReference;
|
|
1998
|
+
related?: V1ObjectReference;
|
|
1999
|
+
reportingController?: string;
|
|
2000
|
+
reportingInstance?: string;
|
|
2001
|
+
series?: V1EventsEventSeries;
|
|
2002
|
+
type?: string;
|
|
2003
|
+
}
|
|
2004
|
+
export interface V1EventsEventList {
|
|
2005
|
+
apiVersion?: string;
|
|
2006
|
+
items: V1EventsEvent[];
|
|
2007
|
+
kind?: string;
|
|
2008
|
+
metadata?: V1ListMeta;
|
|
2009
|
+
}
|
|
2010
|
+
export interface V1EventsEventSeries {
|
|
2011
|
+
count: number;
|
|
2012
|
+
lastObservedTime: V1MicroTime;
|
|
2013
|
+
}
|
|
2014
|
+
export interface V1EventSource {
|
|
2015
|
+
component?: string;
|
|
2016
|
+
host?: string;
|
|
2017
|
+
}
|
|
2018
|
+
export interface V1Eviction {
|
|
2019
|
+
apiVersion?: string;
|
|
2020
|
+
deleteOptions?: V1DeleteOptions;
|
|
2021
|
+
kind?: string;
|
|
2022
|
+
metadata?: V1ObjectMeta;
|
|
2023
|
+
}
|
|
2024
|
+
export interface V1ExactDeviceRequest {
|
|
2025
|
+
adminAccess?: boolean;
|
|
2026
|
+
allocationMode?: string;
|
|
2027
|
+
capacity?: V1CapacityRequirements;
|
|
2028
|
+
count?: number;
|
|
2029
|
+
deviceClassName: string;
|
|
2030
|
+
selectors?: V1DeviceSelector[];
|
|
2031
|
+
tolerations?: V1DeviceToleration[];
|
|
2032
|
+
}
|
|
2033
|
+
export interface V1ExecAction {
|
|
2034
|
+
command?: string[];
|
|
2035
|
+
}
|
|
2036
|
+
export interface V1ExemptPriorityLevelConfiguration {
|
|
2037
|
+
lendablePercent?: number;
|
|
2038
|
+
nominalConcurrencyShares?: number;
|
|
2039
|
+
}
|
|
2040
|
+
export interface V1ExpressionWarning {
|
|
2041
|
+
fieldRef: string;
|
|
2042
|
+
warning: string;
|
|
2043
|
+
}
|
|
2044
|
+
export interface V1ExternalDocumentation {
|
|
2045
|
+
description?: string;
|
|
2046
|
+
url?: string;
|
|
2047
|
+
}
|
|
2048
|
+
export interface V1FCVolumeSource {
|
|
2049
|
+
fsType?: string;
|
|
2050
|
+
lun?: number;
|
|
2051
|
+
readOnly?: boolean;
|
|
2052
|
+
targetWWNs?: string[];
|
|
2053
|
+
wwids?: string[];
|
|
2054
|
+
}
|
|
2055
|
+
export interface V1FieldSelectorAttributes {
|
|
2056
|
+
rawSelector?: string;
|
|
2057
|
+
requirements?: V1FieldSelectorRequirement[];
|
|
2058
|
+
}
|
|
2059
|
+
export interface V1FieldSelectorRequirement {
|
|
2060
|
+
key: string;
|
|
2061
|
+
operator: string;
|
|
2062
|
+
values?: string[];
|
|
2063
|
+
}
|
|
2064
|
+
export interface V1FieldsV1 {
|
|
2065
|
+
[key: string]: unknown;
|
|
2066
|
+
}
|
|
2067
|
+
export interface V1FileKeySelector {
|
|
2068
|
+
key: string;
|
|
2069
|
+
optional?: boolean;
|
|
2070
|
+
path: string;
|
|
2071
|
+
volumeName: string;
|
|
2072
|
+
}
|
|
2073
|
+
export interface V1FlexPersistentVolumeSource {
|
|
2074
|
+
driver: string;
|
|
2075
|
+
fsType?: string;
|
|
2076
|
+
options?: Record<string, string>;
|
|
2077
|
+
readOnly?: boolean;
|
|
2078
|
+
secretRef?: V1SecretReference;
|
|
2079
|
+
}
|
|
2080
|
+
export interface V1FlexVolumeSource {
|
|
2081
|
+
driver: string;
|
|
2082
|
+
fsType?: string;
|
|
2083
|
+
options?: Record<string, string>;
|
|
2084
|
+
readOnly?: boolean;
|
|
2085
|
+
secretRef?: V1LocalObjectReference;
|
|
2086
|
+
}
|
|
2087
|
+
export interface V1FlockerVolumeSource {
|
|
2088
|
+
datasetName?: string;
|
|
2089
|
+
datasetUUID?: string;
|
|
2090
|
+
}
|
|
2091
|
+
export interface V1FlowcontrolSubject {
|
|
2092
|
+
group?: V1GroupSubject;
|
|
2093
|
+
kind: string;
|
|
2094
|
+
serviceAccount?: V1ServiceAccountSubject;
|
|
2095
|
+
user?: V1UserSubject;
|
|
2096
|
+
}
|
|
2097
|
+
export interface V1FlowDistinguisherMethod {
|
|
2098
|
+
type: string;
|
|
2099
|
+
}
|
|
2100
|
+
export interface V1FlowSchema {
|
|
2101
|
+
apiVersion?: string;
|
|
2102
|
+
kind?: string;
|
|
2103
|
+
metadata?: V1ObjectMeta;
|
|
2104
|
+
spec?: V1FlowSchemaSpec;
|
|
2105
|
+
status?: V1FlowSchemaStatus;
|
|
2106
|
+
}
|
|
2107
|
+
export interface V1FlowSchemaCondition {
|
|
2108
|
+
lastTransitionTime?: V1Time;
|
|
2109
|
+
message?: string;
|
|
2110
|
+
reason?: string;
|
|
2111
|
+
status?: string;
|
|
2112
|
+
type?: string;
|
|
2113
|
+
}
|
|
2114
|
+
export interface V1FlowSchemaList {
|
|
2115
|
+
apiVersion?: string;
|
|
2116
|
+
items: V1FlowSchema[];
|
|
2117
|
+
kind?: string;
|
|
2118
|
+
metadata?: V1ListMeta;
|
|
2119
|
+
}
|
|
2120
|
+
export interface V1FlowSchemaSpec {
|
|
2121
|
+
distinguisherMethod?: V1FlowDistinguisherMethod;
|
|
2122
|
+
matchingPrecedence?: number;
|
|
2123
|
+
priorityLevelConfiguration: V1PriorityLevelConfigurationReference;
|
|
2124
|
+
rules?: V1PolicyRulesWithSubjects[];
|
|
2125
|
+
}
|
|
2126
|
+
export interface V1FlowSchemaStatus {
|
|
2127
|
+
conditions?: V1FlowSchemaCondition[];
|
|
2128
|
+
}
|
|
2129
|
+
export interface V1ForNode {
|
|
2130
|
+
name: string;
|
|
2131
|
+
}
|
|
2132
|
+
export interface V1ForZone {
|
|
2133
|
+
name: string;
|
|
2134
|
+
}
|
|
2135
|
+
export interface V1GCEPersistentDiskVolumeSource {
|
|
2136
|
+
fsType?: string;
|
|
2137
|
+
partition?: number;
|
|
2138
|
+
pdName: string;
|
|
2139
|
+
readOnly?: boolean;
|
|
2140
|
+
}
|
|
2141
|
+
export interface V1GitRepoVolumeSource {
|
|
2142
|
+
directory?: string;
|
|
2143
|
+
repository: string;
|
|
2144
|
+
revision?: string;
|
|
2145
|
+
}
|
|
2146
|
+
export interface V1GlusterfsPersistentVolumeSource {
|
|
2147
|
+
endpoints: string;
|
|
2148
|
+
endpointsNamespace?: string;
|
|
2149
|
+
path: string;
|
|
2150
|
+
readOnly?: boolean;
|
|
2151
|
+
}
|
|
2152
|
+
export interface V1GlusterfsVolumeSource {
|
|
2153
|
+
endpoints: string;
|
|
2154
|
+
path: string;
|
|
2155
|
+
readOnly?: boolean;
|
|
2156
|
+
}
|
|
2157
|
+
export interface V1GroupSubject {
|
|
2158
|
+
name: string;
|
|
2159
|
+
}
|
|
2160
|
+
export interface V1GroupVersionForDiscovery {
|
|
2161
|
+
groupVersion: string;
|
|
2162
|
+
version: string;
|
|
2163
|
+
}
|
|
2164
|
+
export interface V1GRPCAction {
|
|
2165
|
+
port: number;
|
|
2166
|
+
service?: string;
|
|
2167
|
+
}
|
|
2168
|
+
export interface V1HorizontalPodAutoscaler {
|
|
2169
|
+
apiVersion?: string;
|
|
2170
|
+
kind?: string;
|
|
2171
|
+
metadata?: V1ObjectMeta;
|
|
2172
|
+
spec?: V1HorizontalPodAutoscalerSpec;
|
|
2173
|
+
status?: V1HorizontalPodAutoscalerStatus;
|
|
2174
|
+
}
|
|
2175
|
+
export interface V1HorizontalPodAutoscalerList {
|
|
2176
|
+
apiVersion?: string;
|
|
2177
|
+
items: V1HorizontalPodAutoscaler[];
|
|
2178
|
+
kind?: string;
|
|
2179
|
+
metadata?: V1ListMeta;
|
|
2180
|
+
}
|
|
2181
|
+
export interface V1HorizontalPodAutoscalerSpec {
|
|
2182
|
+
maxReplicas: number;
|
|
2183
|
+
minReplicas?: number;
|
|
2184
|
+
scaleTargetRef: V1CrossVersionObjectReference;
|
|
2185
|
+
targetCPUUtilizationPercentage?: number;
|
|
2186
|
+
}
|
|
2187
|
+
export interface V1HorizontalPodAutoscalerStatus {
|
|
2188
|
+
currentCPUUtilizationPercentage?: number;
|
|
2189
|
+
currentReplicas: number;
|
|
2190
|
+
desiredReplicas: number;
|
|
2191
|
+
lastScaleTime?: V1Time;
|
|
2192
|
+
observedGeneration?: number;
|
|
2193
|
+
}
|
|
2194
|
+
export interface V1HostAlias {
|
|
2195
|
+
hostnames?: string[];
|
|
2196
|
+
ip: string;
|
|
2197
|
+
}
|
|
2198
|
+
export interface V1HostIP {
|
|
2199
|
+
ip: string;
|
|
2200
|
+
}
|
|
2201
|
+
export interface V1HostPathVolumeSource {
|
|
2202
|
+
path: string;
|
|
2203
|
+
type?: string;
|
|
2204
|
+
}
|
|
2205
|
+
export interface V1HTTPGetAction {
|
|
2206
|
+
host?: string;
|
|
2207
|
+
httpHeaders?: V1HTTPHeader[];
|
|
2208
|
+
path?: string;
|
|
2209
|
+
port: IntOrString;
|
|
2210
|
+
scheme?: string;
|
|
2211
|
+
}
|
|
2212
|
+
export interface V1HTTPHeader {
|
|
2213
|
+
name: string;
|
|
2214
|
+
value: string;
|
|
2215
|
+
}
|
|
2216
|
+
export interface V1HTTPIngressPath {
|
|
2217
|
+
backend: V1IngressBackend;
|
|
2218
|
+
path?: string;
|
|
2219
|
+
pathType: string;
|
|
2220
|
+
}
|
|
2221
|
+
export interface V1HTTPIngressRuleValue {
|
|
2222
|
+
paths: V1HTTPIngressPath[];
|
|
2223
|
+
}
|
|
2224
|
+
export interface V1ImageVolumeSource {
|
|
2225
|
+
pullPolicy?: string;
|
|
2226
|
+
reference?: string;
|
|
2227
|
+
}
|
|
2228
|
+
export interface V1Ingress {
|
|
2229
|
+
apiVersion?: string;
|
|
2230
|
+
kind?: string;
|
|
2231
|
+
metadata?: V1ObjectMeta;
|
|
2232
|
+
spec?: V1IngressSpec;
|
|
2233
|
+
status?: V1IngressStatus;
|
|
2234
|
+
}
|
|
2235
|
+
export interface V1IngressBackend {
|
|
2236
|
+
resource?: V1TypedLocalObjectReference;
|
|
2237
|
+
service?: V1IngressServiceBackend;
|
|
2238
|
+
}
|
|
2239
|
+
export interface V1IngressClass {
|
|
2240
|
+
apiVersion?: string;
|
|
2241
|
+
kind?: string;
|
|
2242
|
+
metadata?: V1ObjectMeta;
|
|
2243
|
+
spec?: V1IngressClassSpec;
|
|
2244
|
+
}
|
|
2245
|
+
export interface V1IngressClassList {
|
|
2246
|
+
apiVersion?: string;
|
|
2247
|
+
items: V1IngressClass[];
|
|
2248
|
+
kind?: string;
|
|
2249
|
+
metadata?: V1ListMeta;
|
|
2250
|
+
}
|
|
2251
|
+
export interface V1IngressClassParametersReference {
|
|
2252
|
+
apiGroup?: string;
|
|
2253
|
+
kind: string;
|
|
2254
|
+
name: string;
|
|
2255
|
+
namespace?: string;
|
|
2256
|
+
scope?: string;
|
|
2257
|
+
}
|
|
2258
|
+
export interface V1IngressClassSpec {
|
|
2259
|
+
controller?: string;
|
|
2260
|
+
parameters?: V1IngressClassParametersReference;
|
|
2261
|
+
}
|
|
2262
|
+
export interface V1IngressList {
|
|
2263
|
+
apiVersion?: string;
|
|
2264
|
+
items: V1Ingress[];
|
|
2265
|
+
kind?: string;
|
|
2266
|
+
metadata?: V1ListMeta;
|
|
2267
|
+
}
|
|
2268
|
+
export interface V1IngressLoadBalancerIngress {
|
|
2269
|
+
hostname?: string;
|
|
2270
|
+
ip?: string;
|
|
2271
|
+
ports?: V1IngressPortStatus[];
|
|
2272
|
+
}
|
|
2273
|
+
export interface V1IngressLoadBalancerStatus {
|
|
2274
|
+
ingress?: V1IngressLoadBalancerIngress[];
|
|
2275
|
+
}
|
|
2276
|
+
export interface V1IngressPortStatus {
|
|
2277
|
+
error?: string;
|
|
2278
|
+
port: number;
|
|
2279
|
+
protocol: string;
|
|
2280
|
+
}
|
|
2281
|
+
export interface V1IngressRule {
|
|
2282
|
+
host?: string;
|
|
2283
|
+
http?: V1HTTPIngressRuleValue;
|
|
2284
|
+
}
|
|
2285
|
+
export interface V1IngressServiceBackend {
|
|
2286
|
+
name: string;
|
|
2287
|
+
port?: V1ServiceBackendPort;
|
|
2288
|
+
}
|
|
2289
|
+
export interface V1IngressSpec {
|
|
2290
|
+
defaultBackend?: V1IngressBackend;
|
|
2291
|
+
ingressClassName?: string;
|
|
2292
|
+
rules?: V1IngressRule[];
|
|
2293
|
+
tls?: V1IngressTLS[];
|
|
2294
|
+
}
|
|
2295
|
+
export interface V1IngressStatus {
|
|
2296
|
+
loadBalancer?: V1IngressLoadBalancerStatus;
|
|
2297
|
+
}
|
|
2298
|
+
export interface V1IngressTLS {
|
|
2299
|
+
hosts?: string[];
|
|
2300
|
+
secretName?: string;
|
|
2301
|
+
}
|
|
2302
|
+
export interface V1IPAddress {
|
|
2303
|
+
apiVersion?: string;
|
|
2304
|
+
kind?: string;
|
|
2305
|
+
metadata?: V1ObjectMeta;
|
|
2306
|
+
spec?: V1IPAddressSpec;
|
|
2307
|
+
}
|
|
2308
|
+
export interface V1IPAddressList {
|
|
2309
|
+
apiVersion?: string;
|
|
2310
|
+
items: V1IPAddress[];
|
|
2311
|
+
kind?: string;
|
|
2312
|
+
metadata?: V1ListMeta;
|
|
2313
|
+
}
|
|
2314
|
+
export interface V1IPAddressSpec {
|
|
2315
|
+
parentRef: V1ParentReference;
|
|
2316
|
+
}
|
|
2317
|
+
export interface V1IPBlock {
|
|
2318
|
+
cidr: string;
|
|
2319
|
+
except?: string[];
|
|
2320
|
+
}
|
|
2321
|
+
export interface V1ISCSIPersistentVolumeSource {
|
|
2322
|
+
chapAuthDiscovery?: boolean;
|
|
2323
|
+
chapAuthSession?: boolean;
|
|
2324
|
+
fsType?: string;
|
|
2325
|
+
initiatorName?: string;
|
|
2326
|
+
iqn: string;
|
|
2327
|
+
iscsiInterface?: string;
|
|
2328
|
+
lun: number;
|
|
2329
|
+
portals?: string[];
|
|
2330
|
+
readOnly?: boolean;
|
|
2331
|
+
secretRef?: V1SecretReference;
|
|
2332
|
+
targetPortal: string;
|
|
2333
|
+
}
|
|
2334
|
+
export interface V1ISCSIVolumeSource {
|
|
2335
|
+
chapAuthDiscovery?: boolean;
|
|
2336
|
+
chapAuthSession?: boolean;
|
|
2337
|
+
fsType?: string;
|
|
2338
|
+
initiatorName?: string;
|
|
2339
|
+
iqn: string;
|
|
2340
|
+
iscsiInterface?: string;
|
|
2341
|
+
lun: number;
|
|
2342
|
+
portals?: string[];
|
|
2343
|
+
readOnly?: boolean;
|
|
2344
|
+
secretRef?: V1LocalObjectReference;
|
|
2345
|
+
targetPortal: string;
|
|
2346
|
+
}
|
|
2347
|
+
export interface V1Job {
|
|
2348
|
+
apiVersion?: string;
|
|
2349
|
+
kind?: string;
|
|
2350
|
+
metadata?: V1ObjectMeta;
|
|
2351
|
+
spec?: V1JobSpec;
|
|
2352
|
+
status?: V1JobStatus;
|
|
2353
|
+
}
|
|
2354
|
+
export interface V1JobCondition {
|
|
2355
|
+
lastProbeTime?: V1Time;
|
|
2356
|
+
lastTransitionTime?: V1Time;
|
|
2357
|
+
message?: string;
|
|
2358
|
+
reason?: string;
|
|
2359
|
+
status: string;
|
|
2360
|
+
type: string;
|
|
2361
|
+
}
|
|
2362
|
+
export interface V1JobList {
|
|
2363
|
+
apiVersion?: string;
|
|
2364
|
+
items: V1Job[];
|
|
2365
|
+
kind?: string;
|
|
2366
|
+
metadata?: V1ListMeta;
|
|
2367
|
+
}
|
|
2368
|
+
export interface V1JobSpec {
|
|
2369
|
+
activeDeadlineSeconds?: number;
|
|
2370
|
+
backoffLimit?: number;
|
|
2371
|
+
backoffLimitPerIndex?: number;
|
|
2372
|
+
completionMode?: string;
|
|
2373
|
+
completions?: number;
|
|
2374
|
+
managedBy?: string;
|
|
2375
|
+
manualSelector?: boolean;
|
|
2376
|
+
maxFailedIndexes?: number;
|
|
2377
|
+
parallelism?: number;
|
|
2378
|
+
podFailurePolicy?: V1PodFailurePolicy;
|
|
2379
|
+
podReplacementPolicy?: string;
|
|
2380
|
+
selector?: V1LabelSelector;
|
|
2381
|
+
successPolicy?: V1SuccessPolicy;
|
|
2382
|
+
suspend?: boolean;
|
|
2383
|
+
template: V1PodTemplateSpec;
|
|
2384
|
+
ttlSecondsAfterFinished?: number;
|
|
2385
|
+
}
|
|
2386
|
+
export interface V1JobStatus {
|
|
2387
|
+
active?: number;
|
|
2388
|
+
completedIndexes?: string;
|
|
2389
|
+
completionTime?: V1Time;
|
|
2390
|
+
conditions?: V1JobCondition[];
|
|
2391
|
+
failed?: number;
|
|
2392
|
+
failedIndexes?: string;
|
|
2393
|
+
ready?: number;
|
|
2394
|
+
startTime?: V1Time;
|
|
2395
|
+
succeeded?: number;
|
|
2396
|
+
terminating?: number;
|
|
2397
|
+
uncountedTerminatedPods?: V1UncountedTerminatedPods;
|
|
2398
|
+
}
|
|
2399
|
+
export interface V1JobTemplateSpec {
|
|
2400
|
+
metadata?: V1ObjectMeta;
|
|
2401
|
+
spec?: V1JobSpec;
|
|
2402
|
+
}
|
|
2403
|
+
export interface V1JSON {
|
|
2404
|
+
[key: string]: unknown;
|
|
2405
|
+
}
|
|
2406
|
+
export interface V1JSONSchemaProps {
|
|
2407
|
+
$ref?: string;
|
|
2408
|
+
$schema?: string;
|
|
2409
|
+
additionalItems?: V1JSONSchemaPropsOrBool;
|
|
2410
|
+
additionalProperties?: V1JSONSchemaPropsOrBool;
|
|
2411
|
+
allOf?: V1JSONSchemaProps[];
|
|
2412
|
+
anyOf?: V1JSONSchemaProps[];
|
|
2413
|
+
default?: V1JSON;
|
|
2414
|
+
definitions?: Record<string, V1JSONSchemaProps>;
|
|
2415
|
+
dependencies?: Record<string, V1JSONSchemaPropsOrStringArray>;
|
|
2416
|
+
description?: string;
|
|
2417
|
+
enum?: V1JSON[];
|
|
2418
|
+
example?: V1JSON;
|
|
2419
|
+
exclusiveMaximum?: boolean;
|
|
2420
|
+
exclusiveMinimum?: boolean;
|
|
2421
|
+
externalDocs?: V1ExternalDocumentation;
|
|
2422
|
+
format?: string;
|
|
2423
|
+
id?: string;
|
|
2424
|
+
items?: V1JSONSchemaPropsOrArray;
|
|
2425
|
+
maximum?: number;
|
|
2426
|
+
maxItems?: number;
|
|
2427
|
+
maxLength?: number;
|
|
2428
|
+
maxProperties?: number;
|
|
2429
|
+
minimum?: number;
|
|
2430
|
+
minItems?: number;
|
|
2431
|
+
minLength?: number;
|
|
2432
|
+
minProperties?: number;
|
|
2433
|
+
multipleOf?: number;
|
|
2434
|
+
not?: V1JSONSchemaProps;
|
|
2435
|
+
nullable?: boolean;
|
|
2436
|
+
oneOf?: V1JSONSchemaProps[];
|
|
2437
|
+
pattern?: string;
|
|
2438
|
+
patternProperties?: Record<string, V1JSONSchemaProps>;
|
|
2439
|
+
properties?: Record<string, V1JSONSchemaProps>;
|
|
2440
|
+
required?: string[];
|
|
2441
|
+
title?: string;
|
|
2442
|
+
type?: string;
|
|
2443
|
+
uniqueItems?: boolean;
|
|
2444
|
+
"x-kubernetes-embedded-resource"?: boolean;
|
|
2445
|
+
"x-kubernetes-int-or-string"?: boolean;
|
|
2446
|
+
"x-kubernetes-list-map-keys"?: string[];
|
|
2447
|
+
"x-kubernetes-list-type"?: string;
|
|
2448
|
+
"x-kubernetes-map-type"?: string;
|
|
2449
|
+
"x-kubernetes-preserve-unknown-fields"?: boolean;
|
|
2450
|
+
"x-kubernetes-validations"?: V1ValidationRule[];
|
|
2451
|
+
}
|
|
2452
|
+
export interface V1JSONSchemaPropsOrArray {
|
|
2453
|
+
[key: string]: unknown;
|
|
2454
|
+
}
|
|
2455
|
+
export interface V1JSONSchemaPropsOrBool {
|
|
2456
|
+
[key: string]: unknown;
|
|
2457
|
+
}
|
|
2458
|
+
export interface V1JSONSchemaPropsOrStringArray {
|
|
2459
|
+
[key: string]: unknown;
|
|
2460
|
+
}
|
|
2461
|
+
export interface V1KeyToPath {
|
|
2462
|
+
key: string;
|
|
2463
|
+
mode?: number;
|
|
2464
|
+
path: string;
|
|
2465
|
+
}
|
|
2466
|
+
export interface V1LabelSelector {
|
|
2467
|
+
matchExpressions?: V1LabelSelectorRequirement[];
|
|
2468
|
+
matchLabels?: Record<string, string>;
|
|
2469
|
+
}
|
|
2470
|
+
export interface V1LabelSelectorAttributes {
|
|
2471
|
+
rawSelector?: string;
|
|
2472
|
+
requirements?: V1LabelSelectorRequirement[];
|
|
2473
|
+
}
|
|
2474
|
+
export interface V1LabelSelectorRequirement {
|
|
2475
|
+
key: string;
|
|
2476
|
+
operator: string;
|
|
2477
|
+
values?: string[];
|
|
2478
|
+
}
|
|
2479
|
+
export interface V1Lease {
|
|
2480
|
+
apiVersion?: string;
|
|
2481
|
+
kind?: string;
|
|
2482
|
+
metadata?: V1ObjectMeta;
|
|
2483
|
+
spec?: V1LeaseSpec;
|
|
2484
|
+
}
|
|
2485
|
+
export interface V1LeaseList {
|
|
2486
|
+
apiVersion?: string;
|
|
2487
|
+
items: V1Lease[];
|
|
2488
|
+
kind?: string;
|
|
2489
|
+
metadata?: V1ListMeta;
|
|
2490
|
+
}
|
|
2491
|
+
export interface V1LeaseSpec {
|
|
2492
|
+
acquireTime?: V1MicroTime;
|
|
2493
|
+
holderIdentity?: string;
|
|
2494
|
+
leaseDurationSeconds?: number;
|
|
2495
|
+
leaseTransitions?: number;
|
|
2496
|
+
preferredHolder?: string;
|
|
2497
|
+
renewTime?: V1MicroTime;
|
|
2498
|
+
strategy?: string;
|
|
2499
|
+
}
|
|
2500
|
+
export interface V1Lifecycle {
|
|
2501
|
+
postStart?: V1LifecycleHandler;
|
|
2502
|
+
preStop?: V1LifecycleHandler;
|
|
2503
|
+
stopSignal?: string;
|
|
2504
|
+
}
|
|
2505
|
+
export interface V1LifecycleHandler {
|
|
2506
|
+
exec?: V1ExecAction;
|
|
2507
|
+
httpGet?: V1HTTPGetAction;
|
|
2508
|
+
sleep?: V1SleepAction;
|
|
2509
|
+
tcpSocket?: V1TCPSocketAction;
|
|
2510
|
+
}
|
|
2511
|
+
export interface V1LimitedPriorityLevelConfiguration {
|
|
2512
|
+
borrowingLimitPercent?: number;
|
|
2513
|
+
lendablePercent?: number;
|
|
2514
|
+
limitResponse?: V1LimitResponse;
|
|
2515
|
+
nominalConcurrencyShares?: number;
|
|
2516
|
+
}
|
|
2517
|
+
export interface V1LimitRange {
|
|
2518
|
+
apiVersion?: string;
|
|
2519
|
+
kind?: string;
|
|
2520
|
+
metadata?: V1ObjectMeta;
|
|
2521
|
+
spec?: V1LimitRangeSpec;
|
|
2522
|
+
}
|
|
2523
|
+
export interface V1LimitRangeItem {
|
|
2524
|
+
default?: Record<string, Quantity>;
|
|
2525
|
+
defaultRequest?: Record<string, Quantity>;
|
|
2526
|
+
max?: Record<string, Quantity>;
|
|
2527
|
+
maxLimitRequestRatio?: Record<string, Quantity>;
|
|
2528
|
+
min?: Record<string, Quantity>;
|
|
2529
|
+
type: string;
|
|
2530
|
+
}
|
|
2531
|
+
export interface V1LimitRangeList {
|
|
2532
|
+
apiVersion?: string;
|
|
2533
|
+
items: V1LimitRange[];
|
|
2534
|
+
kind?: string;
|
|
2535
|
+
metadata?: V1ListMeta;
|
|
2536
|
+
}
|
|
2537
|
+
export interface V1LimitRangeSpec {
|
|
2538
|
+
limits: V1LimitRangeItem[];
|
|
2539
|
+
}
|
|
2540
|
+
export interface V1LimitResponse {
|
|
2541
|
+
queuing?: V1QueuingConfiguration;
|
|
2542
|
+
type: string;
|
|
2543
|
+
}
|
|
2544
|
+
export interface V1LinuxContainerUser {
|
|
2545
|
+
gid: number;
|
|
2546
|
+
supplementalGroups?: number[];
|
|
2547
|
+
uid: number;
|
|
2548
|
+
}
|
|
2549
|
+
export interface V1ListMeta {
|
|
2550
|
+
continue?: string;
|
|
2551
|
+
remainingItemCount?: number;
|
|
2552
|
+
resourceVersion?: string;
|
|
2553
|
+
selfLink?: string;
|
|
2554
|
+
}
|
|
2555
|
+
export interface V1LoadBalancerIngress {
|
|
2556
|
+
hostname?: string;
|
|
2557
|
+
ip?: string;
|
|
2558
|
+
ipMode?: string;
|
|
2559
|
+
ports?: V1PortStatus[];
|
|
2560
|
+
}
|
|
2561
|
+
export interface V1LoadBalancerStatus {
|
|
2562
|
+
ingress?: V1LoadBalancerIngress[];
|
|
2563
|
+
}
|
|
2564
|
+
export interface V1LocalObjectReference {
|
|
2565
|
+
name?: string;
|
|
2566
|
+
}
|
|
2567
|
+
export interface V1LocalSubjectAccessReview {
|
|
2568
|
+
apiVersion?: string;
|
|
2569
|
+
kind?: string;
|
|
2570
|
+
metadata?: V1ObjectMeta;
|
|
2571
|
+
spec: V1SubjectAccessReviewSpec;
|
|
2572
|
+
status?: V1SubjectAccessReviewStatus;
|
|
2573
|
+
}
|
|
2574
|
+
export interface V1LocalVolumeSource {
|
|
2575
|
+
fsType?: string;
|
|
2576
|
+
path: string;
|
|
2577
|
+
}
|
|
2578
|
+
export interface V1ManagedFieldsEntry {
|
|
2579
|
+
apiVersion?: string;
|
|
2580
|
+
fieldsType?: string;
|
|
2581
|
+
fieldsV1?: V1FieldsV1;
|
|
2582
|
+
manager?: string;
|
|
2583
|
+
operation?: string;
|
|
2584
|
+
subresource?: string;
|
|
2585
|
+
time?: V1Time;
|
|
2586
|
+
}
|
|
2587
|
+
export interface V1MatchCondition {
|
|
2588
|
+
expression: string;
|
|
2589
|
+
name: string;
|
|
2590
|
+
}
|
|
2591
|
+
export interface V1MatchResources {
|
|
2592
|
+
excludeResourceRules?: V1NamedRuleWithOperations[];
|
|
2593
|
+
matchPolicy?: string;
|
|
2594
|
+
namespaceSelector?: V1LabelSelector;
|
|
2595
|
+
objectSelector?: V1LabelSelector;
|
|
2596
|
+
resourceRules?: V1NamedRuleWithOperations[];
|
|
2597
|
+
}
|
|
2598
|
+
export interface V1MicroTime {
|
|
2599
|
+
[key: string]: unknown;
|
|
2600
|
+
}
|
|
2601
|
+
export interface V1ModifyVolumeStatus {
|
|
2602
|
+
status: string;
|
|
2603
|
+
targetVolumeAttributesClassName?: string;
|
|
2604
|
+
}
|
|
2605
|
+
export interface V1MutatingWebhook {
|
|
2606
|
+
admissionReviewVersions: string[];
|
|
2607
|
+
clientConfig: V1AdmissionregistrationWebhookClientConfig;
|
|
2608
|
+
failurePolicy?: string;
|
|
2609
|
+
matchConditions?: V1MatchCondition[];
|
|
2610
|
+
matchPolicy?: string;
|
|
2611
|
+
name: string;
|
|
2612
|
+
namespaceSelector?: V1LabelSelector;
|
|
2613
|
+
objectSelector?: V1LabelSelector;
|
|
2614
|
+
reinvocationPolicy?: string;
|
|
2615
|
+
rules?: V1RuleWithOperations[];
|
|
2616
|
+
sideEffects: string;
|
|
2617
|
+
timeoutSeconds?: number;
|
|
2618
|
+
}
|
|
2619
|
+
export interface V1MutatingWebhookConfiguration {
|
|
2620
|
+
apiVersion?: string;
|
|
2621
|
+
kind?: string;
|
|
2622
|
+
metadata?: V1ObjectMeta;
|
|
2623
|
+
webhooks?: V1MutatingWebhook[];
|
|
2624
|
+
}
|
|
2625
|
+
export interface V1MutatingWebhookConfigurationList {
|
|
2626
|
+
apiVersion?: string;
|
|
2627
|
+
items: V1MutatingWebhookConfiguration[];
|
|
2628
|
+
kind?: string;
|
|
2629
|
+
metadata?: V1ListMeta;
|
|
2630
|
+
}
|
|
2631
|
+
export interface V1NamedRuleWithOperations {
|
|
2632
|
+
apiGroups?: string[];
|
|
2633
|
+
apiVersions?: string[];
|
|
2634
|
+
operations?: string[];
|
|
2635
|
+
resourceNames?: string[];
|
|
2636
|
+
resources?: string[];
|
|
2637
|
+
scope?: string;
|
|
2638
|
+
}
|
|
2639
|
+
export interface V1Namespace {
|
|
2640
|
+
apiVersion?: string;
|
|
2641
|
+
kind?: string;
|
|
2642
|
+
metadata?: V1ObjectMeta;
|
|
2643
|
+
spec?: V1NamespaceSpec;
|
|
2644
|
+
status?: V1NamespaceStatus;
|
|
2645
|
+
}
|
|
2646
|
+
export interface V1NamespaceCondition {
|
|
2647
|
+
lastTransitionTime?: V1Time;
|
|
2648
|
+
message?: string;
|
|
2649
|
+
reason?: string;
|
|
2650
|
+
status: string;
|
|
2651
|
+
type: string;
|
|
2652
|
+
}
|
|
2653
|
+
export interface V1NamespaceList {
|
|
2654
|
+
apiVersion?: string;
|
|
2655
|
+
items: V1Namespace[];
|
|
2656
|
+
kind?: string;
|
|
2657
|
+
metadata?: V1ListMeta;
|
|
2658
|
+
}
|
|
2659
|
+
export interface V1NamespaceSpec {
|
|
2660
|
+
finalizers?: string[];
|
|
2661
|
+
}
|
|
2662
|
+
export interface V1NamespaceStatus {
|
|
2663
|
+
conditions?: V1NamespaceCondition[];
|
|
2664
|
+
phase?: string;
|
|
2665
|
+
}
|
|
2666
|
+
export interface V1NetworkDeviceData {
|
|
2667
|
+
hardwareAddress?: string;
|
|
2668
|
+
interfaceName?: string;
|
|
2669
|
+
ips?: string[];
|
|
2670
|
+
}
|
|
2671
|
+
export interface V1NetworkPolicy {
|
|
2672
|
+
apiVersion?: string;
|
|
2673
|
+
kind?: string;
|
|
2674
|
+
metadata?: V1ObjectMeta;
|
|
2675
|
+
spec?: V1NetworkPolicySpec;
|
|
2676
|
+
}
|
|
2677
|
+
export interface V1NetworkPolicyEgressRule {
|
|
2678
|
+
ports?: V1NetworkPolicyPort[];
|
|
2679
|
+
to?: V1NetworkPolicyPeer[];
|
|
2680
|
+
}
|
|
2681
|
+
export interface V1NetworkPolicyIngressRule {
|
|
2682
|
+
from?: V1NetworkPolicyPeer[];
|
|
2683
|
+
ports?: V1NetworkPolicyPort[];
|
|
2684
|
+
}
|
|
2685
|
+
export interface V1NetworkPolicyList {
|
|
2686
|
+
apiVersion?: string;
|
|
2687
|
+
items: V1NetworkPolicy[];
|
|
2688
|
+
kind?: string;
|
|
2689
|
+
metadata?: V1ListMeta;
|
|
2690
|
+
}
|
|
2691
|
+
export interface V1NetworkPolicyPeer {
|
|
2692
|
+
ipBlock?: V1IPBlock;
|
|
2693
|
+
namespaceSelector?: V1LabelSelector;
|
|
2694
|
+
podSelector?: V1LabelSelector;
|
|
2695
|
+
}
|
|
2696
|
+
export interface V1NetworkPolicyPort {
|
|
2697
|
+
endPort?: number;
|
|
2698
|
+
port?: IntOrString;
|
|
2699
|
+
protocol?: string;
|
|
2700
|
+
}
|
|
2701
|
+
export interface V1NetworkPolicySpec {
|
|
2702
|
+
egress?: V1NetworkPolicyEgressRule[];
|
|
2703
|
+
ingress?: V1NetworkPolicyIngressRule[];
|
|
2704
|
+
podSelector?: V1LabelSelector;
|
|
2705
|
+
policyTypes?: string[];
|
|
2706
|
+
}
|
|
2707
|
+
export interface V1NFSVolumeSource {
|
|
2708
|
+
path: string;
|
|
2709
|
+
readOnly?: boolean;
|
|
2710
|
+
server: string;
|
|
2711
|
+
}
|
|
2712
|
+
export interface V1Node {
|
|
2713
|
+
apiVersion?: string;
|
|
2714
|
+
kind?: string;
|
|
2715
|
+
metadata?: V1ObjectMeta;
|
|
2716
|
+
spec?: V1NodeSpec;
|
|
2717
|
+
status?: V1NodeStatus;
|
|
2718
|
+
}
|
|
2719
|
+
export interface V1NodeAddress {
|
|
2720
|
+
address: string;
|
|
2721
|
+
type: string;
|
|
2722
|
+
}
|
|
2723
|
+
export interface V1NodeAffinity {
|
|
2724
|
+
preferredDuringSchedulingIgnoredDuringExecution?: V1PreferredSchedulingTerm[];
|
|
2725
|
+
requiredDuringSchedulingIgnoredDuringExecution?: V1NodeSelector;
|
|
2726
|
+
}
|
|
2727
|
+
export interface V1NodeCondition {
|
|
2728
|
+
lastHeartbeatTime?: V1Time;
|
|
2729
|
+
lastTransitionTime?: V1Time;
|
|
2730
|
+
message?: string;
|
|
2731
|
+
reason?: string;
|
|
2732
|
+
status: string;
|
|
2733
|
+
type: string;
|
|
2734
|
+
}
|
|
2735
|
+
export interface V1NodeConfigSource {
|
|
2736
|
+
configMap?: V1ConfigMapNodeConfigSource;
|
|
2737
|
+
}
|
|
2738
|
+
export interface V1NodeConfigStatus {
|
|
2739
|
+
active?: V1NodeConfigSource;
|
|
2740
|
+
assigned?: V1NodeConfigSource;
|
|
2741
|
+
error?: string;
|
|
2742
|
+
lastKnownGood?: V1NodeConfigSource;
|
|
2743
|
+
}
|
|
2744
|
+
export interface V1NodeDaemonEndpoints {
|
|
2745
|
+
kubeletEndpoint?: V1DaemonEndpoint;
|
|
2746
|
+
}
|
|
2747
|
+
export interface V1NodeFeatures {
|
|
2748
|
+
supplementalGroupsPolicy?: boolean;
|
|
2749
|
+
}
|
|
2750
|
+
export interface V1NodeList {
|
|
2751
|
+
apiVersion?: string;
|
|
2752
|
+
items: V1Node[];
|
|
2753
|
+
kind?: string;
|
|
2754
|
+
metadata?: V1ListMeta;
|
|
2755
|
+
}
|
|
2756
|
+
export interface V1NodeRuntimeHandler {
|
|
2757
|
+
features?: V1NodeRuntimeHandlerFeatures;
|
|
2758
|
+
name?: string;
|
|
2759
|
+
}
|
|
2760
|
+
export interface V1NodeRuntimeHandlerFeatures {
|
|
2761
|
+
recursiveReadOnlyMounts?: boolean;
|
|
2762
|
+
userNamespaces?: boolean;
|
|
2763
|
+
}
|
|
2764
|
+
export interface V1NodeSelector {
|
|
2765
|
+
nodeSelectorTerms: V1NodeSelectorTerm[];
|
|
2766
|
+
}
|
|
2767
|
+
export interface V1NodeSelectorRequirement {
|
|
2768
|
+
key: string;
|
|
2769
|
+
operator: string;
|
|
2770
|
+
values?: string[];
|
|
2771
|
+
}
|
|
2772
|
+
export interface V1NodeSelectorTerm {
|
|
2773
|
+
matchExpressions?: V1NodeSelectorRequirement[];
|
|
2774
|
+
matchFields?: V1NodeSelectorRequirement[];
|
|
2775
|
+
}
|
|
2776
|
+
export interface V1NodeSpec {
|
|
2777
|
+
configSource?: V1NodeConfigSource;
|
|
2778
|
+
externalID?: string;
|
|
2779
|
+
podCIDR?: string;
|
|
2780
|
+
podCIDRs?: string[];
|
|
2781
|
+
providerID?: string;
|
|
2782
|
+
taints?: V1Taint[];
|
|
2783
|
+
unschedulable?: boolean;
|
|
2784
|
+
}
|
|
2785
|
+
export interface V1NodeStatus {
|
|
2786
|
+
addresses?: V1NodeAddress[];
|
|
2787
|
+
allocatable?: Record<string, Quantity>;
|
|
2788
|
+
capacity?: Record<string, Quantity>;
|
|
2789
|
+
conditions?: V1NodeCondition[];
|
|
2790
|
+
config?: V1NodeConfigStatus;
|
|
2791
|
+
daemonEndpoints?: V1NodeDaemonEndpoints;
|
|
2792
|
+
features?: V1NodeFeatures;
|
|
2793
|
+
images?: V1ContainerImage[];
|
|
2794
|
+
nodeInfo?: V1NodeSystemInfo;
|
|
2795
|
+
phase?: string;
|
|
2796
|
+
runtimeHandlers?: V1NodeRuntimeHandler[];
|
|
2797
|
+
volumesAttached?: V1AttachedVolume[];
|
|
2798
|
+
volumesInUse?: string[];
|
|
2799
|
+
}
|
|
2800
|
+
export interface V1NodeSwapStatus {
|
|
2801
|
+
capacity?: number;
|
|
2802
|
+
}
|
|
2803
|
+
export interface V1NodeSystemInfo {
|
|
2804
|
+
architecture: string;
|
|
2805
|
+
bootID: string;
|
|
2806
|
+
containerRuntimeVersion: string;
|
|
2807
|
+
kernelVersion: string;
|
|
2808
|
+
kubeletVersion: string;
|
|
2809
|
+
kubeProxyVersion: string;
|
|
2810
|
+
machineID: string;
|
|
2811
|
+
operatingSystem: string;
|
|
2812
|
+
osImage: string;
|
|
2813
|
+
swap?: V1NodeSwapStatus;
|
|
2814
|
+
systemUUID: string;
|
|
2815
|
+
}
|
|
2816
|
+
export interface V1NonResourceAttributes {
|
|
2817
|
+
path?: string;
|
|
2818
|
+
verb?: string;
|
|
2819
|
+
}
|
|
2820
|
+
export interface V1NonResourcePolicyRule {
|
|
2821
|
+
nonResourceURLs: string[];
|
|
2822
|
+
verbs: string[];
|
|
2823
|
+
}
|
|
2824
|
+
export interface V1NonResourceRule {
|
|
2825
|
+
nonResourceURLs?: string[];
|
|
2826
|
+
verbs: string[];
|
|
2827
|
+
}
|
|
2828
|
+
export interface V1ObjectFieldSelector {
|
|
2829
|
+
apiVersion?: string;
|
|
2830
|
+
fieldPath: string;
|
|
2831
|
+
}
|
|
2832
|
+
export interface V1ObjectMeta {
|
|
2833
|
+
annotations?: Record<string, string>;
|
|
2834
|
+
creationTimestamp?: V1Time;
|
|
2835
|
+
deletionGracePeriodSeconds?: number;
|
|
2836
|
+
deletionTimestamp?: V1Time;
|
|
2837
|
+
finalizers?: string[];
|
|
2838
|
+
generateName?: string;
|
|
2839
|
+
generation?: number;
|
|
2840
|
+
labels?: Record<string, string>;
|
|
2841
|
+
managedFields?: V1ManagedFieldsEntry[];
|
|
2842
|
+
name?: string;
|
|
2843
|
+
namespace?: string;
|
|
2844
|
+
ownerReferences?: V1OwnerReference[];
|
|
2845
|
+
resourceVersion?: string;
|
|
2846
|
+
selfLink?: string;
|
|
2847
|
+
uid?: string;
|
|
2848
|
+
}
|
|
2849
|
+
export interface V1ObjectReference {
|
|
2850
|
+
apiVersion?: string;
|
|
2851
|
+
fieldPath?: string;
|
|
2852
|
+
kind?: string;
|
|
2853
|
+
name?: string;
|
|
2854
|
+
namespace?: string;
|
|
2855
|
+
resourceVersion?: string;
|
|
2856
|
+
uid?: string;
|
|
2857
|
+
}
|
|
2858
|
+
export interface V1OpaqueDeviceConfiguration {
|
|
2859
|
+
driver: string;
|
|
2860
|
+
parameters: RawExtension;
|
|
2861
|
+
}
|
|
2862
|
+
export interface V1Overhead {
|
|
2863
|
+
podFixed?: Record<string, Quantity>;
|
|
2864
|
+
}
|
|
2865
|
+
export interface V1OwnerReference {
|
|
2866
|
+
apiVersion: string;
|
|
2867
|
+
blockOwnerDeletion?: boolean;
|
|
2868
|
+
controller?: boolean;
|
|
2869
|
+
kind: string;
|
|
2870
|
+
name: string;
|
|
2871
|
+
uid: string;
|
|
2872
|
+
}
|
|
2873
|
+
export interface V1ParamKind {
|
|
2874
|
+
apiVersion?: string;
|
|
2875
|
+
kind?: string;
|
|
2876
|
+
}
|
|
2877
|
+
export interface V1ParamRef {
|
|
2878
|
+
name?: string;
|
|
2879
|
+
namespace?: string;
|
|
2880
|
+
parameterNotFoundAction?: string;
|
|
2881
|
+
selector?: V1LabelSelector;
|
|
2882
|
+
}
|
|
2883
|
+
export interface V1ParentReference {
|
|
2884
|
+
group?: string;
|
|
2885
|
+
name: string;
|
|
2886
|
+
namespace?: string;
|
|
2887
|
+
resource: string;
|
|
2888
|
+
}
|
|
2889
|
+
export interface V1Patch {
|
|
2890
|
+
[key: string]: unknown;
|
|
2891
|
+
}
|
|
2892
|
+
export interface V1PersistentVolume {
|
|
2893
|
+
apiVersion?: string;
|
|
2894
|
+
kind?: string;
|
|
2895
|
+
metadata?: V1ObjectMeta;
|
|
2896
|
+
spec?: V1PersistentVolumeSpec;
|
|
2897
|
+
status?: V1PersistentVolumeStatus;
|
|
2898
|
+
}
|
|
2899
|
+
export interface V1PersistentVolumeClaim {
|
|
2900
|
+
apiVersion?: string;
|
|
2901
|
+
kind?: string;
|
|
2902
|
+
metadata?: V1ObjectMeta;
|
|
2903
|
+
spec?: V1PersistentVolumeClaimSpec;
|
|
2904
|
+
status?: V1PersistentVolumeClaimStatus;
|
|
2905
|
+
}
|
|
2906
|
+
export interface V1PersistentVolumeClaimCondition {
|
|
2907
|
+
lastProbeTime?: V1Time;
|
|
2908
|
+
lastTransitionTime?: V1Time;
|
|
2909
|
+
message?: string;
|
|
2910
|
+
reason?: string;
|
|
2911
|
+
status: string;
|
|
2912
|
+
type: string;
|
|
2913
|
+
}
|
|
2914
|
+
export interface V1PersistentVolumeClaimList {
|
|
2915
|
+
apiVersion?: string;
|
|
2916
|
+
items: V1PersistentVolumeClaim[];
|
|
2917
|
+
kind?: string;
|
|
2918
|
+
metadata?: V1ListMeta;
|
|
2919
|
+
}
|
|
2920
|
+
export interface V1PersistentVolumeClaimSpec {
|
|
2921
|
+
accessModes?: string[];
|
|
2922
|
+
dataSource?: V1TypedLocalObjectReference;
|
|
2923
|
+
dataSourceRef?: V1TypedObjectReference;
|
|
2924
|
+
resources?: V1VolumeResourceRequirements;
|
|
2925
|
+
selector?: V1LabelSelector;
|
|
2926
|
+
storageClassName?: string;
|
|
2927
|
+
volumeAttributesClassName?: string;
|
|
2928
|
+
volumeMode?: string;
|
|
2929
|
+
volumeName?: string;
|
|
2930
|
+
}
|
|
2931
|
+
export interface V1PersistentVolumeClaimStatus {
|
|
2932
|
+
accessModes?: string[];
|
|
2933
|
+
allocatedResources?: Record<string, Quantity>;
|
|
2934
|
+
allocatedResourceStatuses?: Record<string, string>;
|
|
2935
|
+
capacity?: Record<string, Quantity>;
|
|
2936
|
+
conditions?: V1PersistentVolumeClaimCondition[];
|
|
2937
|
+
currentVolumeAttributesClassName?: string;
|
|
2938
|
+
modifyVolumeStatus?: V1ModifyVolumeStatus;
|
|
2939
|
+
phase?: string;
|
|
2940
|
+
}
|
|
2941
|
+
export interface V1PersistentVolumeClaimTemplate {
|
|
2942
|
+
metadata?: V1ObjectMeta;
|
|
2943
|
+
spec: V1PersistentVolumeClaimSpec;
|
|
2944
|
+
}
|
|
2945
|
+
export interface V1PersistentVolumeClaimVolumeSource {
|
|
2946
|
+
claimName: string;
|
|
2947
|
+
readOnly?: boolean;
|
|
2948
|
+
}
|
|
2949
|
+
export interface V1PersistentVolumeList {
|
|
2950
|
+
apiVersion?: string;
|
|
2951
|
+
items: V1PersistentVolume[];
|
|
2952
|
+
kind?: string;
|
|
2953
|
+
metadata?: V1ListMeta;
|
|
2954
|
+
}
|
|
2955
|
+
export interface V1PersistentVolumeSpec {
|
|
2956
|
+
accessModes?: string[];
|
|
2957
|
+
awsElasticBlockStore?: V1AWSElasticBlockStoreVolumeSource;
|
|
2958
|
+
azureDisk?: V1AzureDiskVolumeSource;
|
|
2959
|
+
azureFile?: V1AzureFilePersistentVolumeSource;
|
|
2960
|
+
capacity?: Record<string, Quantity>;
|
|
2961
|
+
cephfs?: V1CephFSPersistentVolumeSource;
|
|
2962
|
+
cinder?: V1CinderPersistentVolumeSource;
|
|
2963
|
+
claimRef?: V1ObjectReference;
|
|
2964
|
+
csi?: V1CSIPersistentVolumeSource;
|
|
2965
|
+
fc?: V1FCVolumeSource;
|
|
2966
|
+
flexVolume?: V1FlexPersistentVolumeSource;
|
|
2967
|
+
flocker?: V1FlockerVolumeSource;
|
|
2968
|
+
gcePersistentDisk?: V1GCEPersistentDiskVolumeSource;
|
|
2969
|
+
glusterfs?: V1GlusterfsPersistentVolumeSource;
|
|
2970
|
+
hostPath?: V1HostPathVolumeSource;
|
|
2971
|
+
iscsi?: V1ISCSIPersistentVolumeSource;
|
|
2972
|
+
local?: V1LocalVolumeSource;
|
|
2973
|
+
mountOptions?: string[];
|
|
2974
|
+
nfs?: V1NFSVolumeSource;
|
|
2975
|
+
nodeAffinity?: V1VolumeNodeAffinity;
|
|
2976
|
+
persistentVolumeReclaimPolicy?: string;
|
|
2977
|
+
photonPersistentDisk?: V1PhotonPersistentDiskVolumeSource;
|
|
2978
|
+
portworxVolume?: V1PortworxVolumeSource;
|
|
2979
|
+
quobyte?: V1QuobyteVolumeSource;
|
|
2980
|
+
rbd?: V1RBDPersistentVolumeSource;
|
|
2981
|
+
scaleIO?: V1ScaleIOPersistentVolumeSource;
|
|
2982
|
+
storageClassName?: string;
|
|
2983
|
+
storageos?: V1StorageOSPersistentVolumeSource;
|
|
2984
|
+
volumeAttributesClassName?: string;
|
|
2985
|
+
volumeMode?: string;
|
|
2986
|
+
vsphereVolume?: V1VsphereVirtualDiskVolumeSource;
|
|
2987
|
+
}
|
|
2988
|
+
export interface V1PersistentVolumeStatus {
|
|
2989
|
+
lastPhaseTransitionTime?: V1Time;
|
|
2990
|
+
message?: string;
|
|
2991
|
+
phase?: string;
|
|
2992
|
+
reason?: string;
|
|
2993
|
+
}
|
|
2994
|
+
export interface V1PhotonPersistentDiskVolumeSource {
|
|
2995
|
+
fsType?: string;
|
|
2996
|
+
pdID: string;
|
|
2997
|
+
}
|
|
2998
|
+
export interface V1Pod {
|
|
2999
|
+
apiVersion?: string;
|
|
3000
|
+
kind?: string;
|
|
3001
|
+
metadata?: V1ObjectMeta;
|
|
3002
|
+
spec?: V1PodSpec;
|
|
3003
|
+
status?: V1PodStatus;
|
|
3004
|
+
}
|
|
3005
|
+
export interface V1PodAffinity {
|
|
3006
|
+
preferredDuringSchedulingIgnoredDuringExecution?: V1WeightedPodAffinityTerm[];
|
|
3007
|
+
requiredDuringSchedulingIgnoredDuringExecution?: V1PodAffinityTerm[];
|
|
3008
|
+
}
|
|
3009
|
+
export interface V1PodAffinityTerm {
|
|
3010
|
+
labelSelector?: V1LabelSelector;
|
|
3011
|
+
matchLabelKeys?: string[];
|
|
3012
|
+
mismatchLabelKeys?: string[];
|
|
3013
|
+
namespaces?: string[];
|
|
3014
|
+
namespaceSelector?: V1LabelSelector;
|
|
3015
|
+
topologyKey: string;
|
|
3016
|
+
}
|
|
3017
|
+
export interface V1PodAntiAffinity {
|
|
3018
|
+
preferredDuringSchedulingIgnoredDuringExecution?: V1WeightedPodAffinityTerm[];
|
|
3019
|
+
requiredDuringSchedulingIgnoredDuringExecution?: V1PodAffinityTerm[];
|
|
3020
|
+
}
|
|
3021
|
+
export interface V1PodCertificateProjection {
|
|
3022
|
+
certificateChainPath?: string;
|
|
3023
|
+
credentialBundlePath?: string;
|
|
3024
|
+
keyPath?: string;
|
|
3025
|
+
keyType: string;
|
|
3026
|
+
maxExpirationSeconds?: number;
|
|
3027
|
+
signerName: string;
|
|
3028
|
+
}
|
|
3029
|
+
export interface V1PodCondition {
|
|
3030
|
+
lastProbeTime?: V1Time;
|
|
3031
|
+
lastTransitionTime?: V1Time;
|
|
3032
|
+
message?: string;
|
|
3033
|
+
observedGeneration?: number;
|
|
3034
|
+
reason?: string;
|
|
3035
|
+
status: string;
|
|
3036
|
+
type: string;
|
|
3037
|
+
}
|
|
3038
|
+
export interface V1PodDisruptionBudget {
|
|
3039
|
+
apiVersion?: string;
|
|
3040
|
+
kind?: string;
|
|
3041
|
+
metadata?: V1ObjectMeta;
|
|
3042
|
+
spec?: V1PodDisruptionBudgetSpec;
|
|
3043
|
+
status?: V1PodDisruptionBudgetStatus;
|
|
3044
|
+
}
|
|
3045
|
+
export interface V1PodDisruptionBudgetList {
|
|
3046
|
+
apiVersion?: string;
|
|
3047
|
+
items: V1PodDisruptionBudget[];
|
|
3048
|
+
kind?: string;
|
|
3049
|
+
metadata?: V1ListMeta;
|
|
3050
|
+
}
|
|
3051
|
+
export interface V1PodDisruptionBudgetSpec {
|
|
3052
|
+
maxUnavailable?: IntOrString;
|
|
3053
|
+
minAvailable?: IntOrString;
|
|
3054
|
+
selector?: V1LabelSelector;
|
|
3055
|
+
unhealthyPodEvictionPolicy?: string;
|
|
3056
|
+
}
|
|
3057
|
+
export interface V1PodDisruptionBudgetStatus {
|
|
3058
|
+
conditions?: V1Condition[];
|
|
3059
|
+
currentHealthy: number;
|
|
3060
|
+
desiredHealthy: number;
|
|
3061
|
+
disruptedPods?: Record<string, V1Time>;
|
|
3062
|
+
disruptionsAllowed: number;
|
|
3063
|
+
expectedPods: number;
|
|
3064
|
+
observedGeneration?: number;
|
|
3065
|
+
}
|
|
3066
|
+
export interface V1PodDNSConfig {
|
|
3067
|
+
nameservers?: string[];
|
|
3068
|
+
options?: V1PodDNSConfigOption[];
|
|
3069
|
+
searches?: string[];
|
|
3070
|
+
}
|
|
3071
|
+
export interface V1PodDNSConfigOption {
|
|
3072
|
+
name?: string;
|
|
3073
|
+
value?: string;
|
|
3074
|
+
}
|
|
3075
|
+
export interface V1PodExtendedResourceClaimStatus {
|
|
3076
|
+
requestMappings: V1ContainerExtendedResourceRequest[];
|
|
3077
|
+
resourceClaimName: string;
|
|
3078
|
+
}
|
|
3079
|
+
export interface V1PodFailurePolicy {
|
|
3080
|
+
rules: V1PodFailurePolicyRule[];
|
|
3081
|
+
}
|
|
3082
|
+
export interface V1PodFailurePolicyOnExitCodesRequirement {
|
|
3083
|
+
containerName?: string;
|
|
3084
|
+
operator: string;
|
|
3085
|
+
values: number[];
|
|
3086
|
+
}
|
|
3087
|
+
export interface V1PodFailurePolicyOnPodConditionsPattern {
|
|
3088
|
+
status: string;
|
|
3089
|
+
type: string;
|
|
3090
|
+
}
|
|
3091
|
+
export interface V1PodFailurePolicyRule {
|
|
3092
|
+
action: string;
|
|
3093
|
+
onExitCodes?: V1PodFailurePolicyOnExitCodesRequirement;
|
|
3094
|
+
onPodConditions?: V1PodFailurePolicyOnPodConditionsPattern[];
|
|
3095
|
+
}
|
|
3096
|
+
export interface V1PodIP {
|
|
3097
|
+
ip: string;
|
|
3098
|
+
}
|
|
3099
|
+
export interface V1PodList {
|
|
3100
|
+
apiVersion?: string;
|
|
3101
|
+
items: V1Pod[];
|
|
3102
|
+
kind?: string;
|
|
3103
|
+
metadata?: V1ListMeta;
|
|
3104
|
+
}
|
|
3105
|
+
export interface V1PodOS {
|
|
3106
|
+
name: string;
|
|
3107
|
+
}
|
|
3108
|
+
export interface V1PodReadinessGate {
|
|
3109
|
+
conditionType: string;
|
|
3110
|
+
}
|
|
3111
|
+
export interface V1PodResourceClaim {
|
|
3112
|
+
name: string;
|
|
3113
|
+
resourceClaimName?: string;
|
|
3114
|
+
resourceClaimTemplateName?: string;
|
|
3115
|
+
}
|
|
3116
|
+
export interface V1PodResourceClaimStatus {
|
|
3117
|
+
name: string;
|
|
3118
|
+
resourceClaimName?: string;
|
|
3119
|
+
}
|
|
3120
|
+
export interface V1PodSchedulingGate {
|
|
3121
|
+
name: string;
|
|
3122
|
+
}
|
|
3123
|
+
export interface V1PodSecurityContext {
|
|
3124
|
+
appArmorProfile?: V1AppArmorProfile;
|
|
3125
|
+
fsGroup?: number;
|
|
3126
|
+
fsGroupChangePolicy?: string;
|
|
3127
|
+
runAsGroup?: number;
|
|
3128
|
+
runAsNonRoot?: boolean;
|
|
3129
|
+
runAsUser?: number;
|
|
3130
|
+
seccompProfile?: V1SeccompProfile;
|
|
3131
|
+
seLinuxChangePolicy?: string;
|
|
3132
|
+
seLinuxOptions?: V1SELinuxOptions;
|
|
3133
|
+
supplementalGroups?: number[];
|
|
3134
|
+
supplementalGroupsPolicy?: string;
|
|
3135
|
+
sysctls?: V1Sysctl[];
|
|
3136
|
+
windowsOptions?: V1WindowsSecurityContextOptions;
|
|
3137
|
+
}
|
|
3138
|
+
export interface V1PodSpec {
|
|
3139
|
+
activeDeadlineSeconds?: number;
|
|
3140
|
+
affinity?: V1Affinity;
|
|
3141
|
+
automountServiceAccountToken?: boolean;
|
|
3142
|
+
containers: V1Container[];
|
|
3143
|
+
dnsConfig?: V1PodDNSConfig;
|
|
3144
|
+
dnsPolicy?: string;
|
|
3145
|
+
enableServiceLinks?: boolean;
|
|
3146
|
+
ephemeralContainers?: V1EphemeralContainer[];
|
|
3147
|
+
hostAliases?: V1HostAlias[];
|
|
3148
|
+
hostIPC?: boolean;
|
|
3149
|
+
hostname?: string;
|
|
3150
|
+
hostnameOverride?: string;
|
|
3151
|
+
hostNetwork?: boolean;
|
|
3152
|
+
hostPID?: boolean;
|
|
3153
|
+
hostUsers?: boolean;
|
|
3154
|
+
imagePullSecrets?: V1LocalObjectReference[];
|
|
3155
|
+
initContainers?: V1Container[];
|
|
3156
|
+
nodeName?: string;
|
|
3157
|
+
nodeSelector?: Record<string, string>;
|
|
3158
|
+
os?: V1PodOS;
|
|
3159
|
+
overhead?: Record<string, Quantity>;
|
|
3160
|
+
preemptionPolicy?: string;
|
|
3161
|
+
priority?: number;
|
|
3162
|
+
priorityClassName?: string;
|
|
3163
|
+
readinessGates?: V1PodReadinessGate[];
|
|
3164
|
+
resourceClaims?: V1PodResourceClaim[];
|
|
3165
|
+
resources?: V1ResourceRequirements;
|
|
3166
|
+
restartPolicy?: string;
|
|
3167
|
+
runtimeClassName?: string;
|
|
3168
|
+
schedulerName?: string;
|
|
3169
|
+
schedulingGates?: V1PodSchedulingGate[];
|
|
3170
|
+
securityContext?: V1PodSecurityContext;
|
|
3171
|
+
serviceAccount?: string;
|
|
3172
|
+
serviceAccountName?: string;
|
|
3173
|
+
setHostnameAsFQDN?: boolean;
|
|
3174
|
+
shareProcessNamespace?: boolean;
|
|
3175
|
+
subdomain?: string;
|
|
3176
|
+
terminationGracePeriodSeconds?: number;
|
|
3177
|
+
tolerations?: V1Toleration[];
|
|
3178
|
+
topologySpreadConstraints?: V1TopologySpreadConstraint[];
|
|
3179
|
+
volumes?: V1Volume[];
|
|
3180
|
+
}
|
|
3181
|
+
export interface V1PodStatus {
|
|
3182
|
+
conditions?: V1PodCondition[];
|
|
3183
|
+
containerStatuses?: V1ContainerStatus[];
|
|
3184
|
+
ephemeralContainerStatuses?: V1ContainerStatus[];
|
|
3185
|
+
extendedResourceClaimStatus?: V1PodExtendedResourceClaimStatus;
|
|
3186
|
+
hostIP?: string;
|
|
3187
|
+
hostIPs?: V1HostIP[];
|
|
3188
|
+
initContainerStatuses?: V1ContainerStatus[];
|
|
3189
|
+
message?: string;
|
|
3190
|
+
nominatedNodeName?: string;
|
|
3191
|
+
observedGeneration?: number;
|
|
3192
|
+
phase?: string;
|
|
3193
|
+
podIP?: string;
|
|
3194
|
+
podIPs?: V1PodIP[];
|
|
3195
|
+
qosClass?: string;
|
|
3196
|
+
reason?: string;
|
|
3197
|
+
resize?: string;
|
|
3198
|
+
resourceClaimStatuses?: V1PodResourceClaimStatus[];
|
|
3199
|
+
startTime?: V1Time;
|
|
3200
|
+
}
|
|
3201
|
+
export interface V1PodTemplate {
|
|
3202
|
+
apiVersion?: string;
|
|
3203
|
+
kind?: string;
|
|
3204
|
+
metadata?: V1ObjectMeta;
|
|
3205
|
+
template?: V1PodTemplateSpec;
|
|
3206
|
+
}
|
|
3207
|
+
export interface V1PodTemplateList {
|
|
3208
|
+
apiVersion?: string;
|
|
3209
|
+
items: V1PodTemplate[];
|
|
3210
|
+
kind?: string;
|
|
3211
|
+
metadata?: V1ListMeta;
|
|
3212
|
+
}
|
|
3213
|
+
export interface V1PodTemplateSpec {
|
|
3214
|
+
metadata?: V1ObjectMeta;
|
|
3215
|
+
spec?: V1PodSpec;
|
|
3216
|
+
}
|
|
3217
|
+
export interface V1PolicyRule {
|
|
3218
|
+
apiGroups?: string[];
|
|
3219
|
+
nonResourceURLs?: string[];
|
|
3220
|
+
resourceNames?: string[];
|
|
3221
|
+
resources?: string[];
|
|
3222
|
+
verbs: string[];
|
|
3223
|
+
}
|
|
3224
|
+
export interface V1PolicyRulesWithSubjects {
|
|
3225
|
+
nonResourceRules?: V1NonResourcePolicyRule[];
|
|
3226
|
+
resourceRules?: V1ResourcePolicyRule[];
|
|
3227
|
+
subjects: V1FlowcontrolSubject[];
|
|
3228
|
+
}
|
|
3229
|
+
export interface V1PortStatus {
|
|
3230
|
+
error?: string;
|
|
3231
|
+
port: number;
|
|
3232
|
+
protocol: string;
|
|
3233
|
+
}
|
|
3234
|
+
export interface V1PortworxVolumeSource {
|
|
3235
|
+
fsType?: string;
|
|
3236
|
+
readOnly?: boolean;
|
|
3237
|
+
volumeID: string;
|
|
3238
|
+
}
|
|
3239
|
+
export interface V1Preconditions {
|
|
3240
|
+
resourceVersion?: string;
|
|
3241
|
+
uid?: string;
|
|
3242
|
+
}
|
|
3243
|
+
export interface V1PreferredSchedulingTerm {
|
|
3244
|
+
preference: V1NodeSelectorTerm;
|
|
3245
|
+
weight: number;
|
|
3246
|
+
}
|
|
3247
|
+
export interface V1PriorityClass {
|
|
3248
|
+
apiVersion?: string;
|
|
3249
|
+
description?: string;
|
|
3250
|
+
globalDefault?: boolean;
|
|
3251
|
+
kind?: string;
|
|
3252
|
+
metadata?: V1ObjectMeta;
|
|
3253
|
+
preemptionPolicy?: string;
|
|
3254
|
+
value: number;
|
|
3255
|
+
}
|
|
3256
|
+
export interface V1PriorityClassList {
|
|
3257
|
+
apiVersion?: string;
|
|
3258
|
+
items: V1PriorityClass[];
|
|
3259
|
+
kind?: string;
|
|
3260
|
+
metadata?: V1ListMeta;
|
|
3261
|
+
}
|
|
3262
|
+
export interface V1PriorityLevelConfiguration {
|
|
3263
|
+
apiVersion?: string;
|
|
3264
|
+
kind?: string;
|
|
3265
|
+
metadata?: V1ObjectMeta;
|
|
3266
|
+
spec?: V1PriorityLevelConfigurationSpec;
|
|
3267
|
+
status?: V1PriorityLevelConfigurationStatus;
|
|
3268
|
+
}
|
|
3269
|
+
export interface V1PriorityLevelConfigurationCondition {
|
|
3270
|
+
lastTransitionTime?: V1Time;
|
|
3271
|
+
message?: string;
|
|
3272
|
+
reason?: string;
|
|
3273
|
+
status?: string;
|
|
3274
|
+
type?: string;
|
|
3275
|
+
}
|
|
3276
|
+
export interface V1PriorityLevelConfigurationList {
|
|
3277
|
+
apiVersion?: string;
|
|
3278
|
+
items: V1PriorityLevelConfiguration[];
|
|
3279
|
+
kind?: string;
|
|
3280
|
+
metadata?: V1ListMeta;
|
|
3281
|
+
}
|
|
3282
|
+
export interface V1PriorityLevelConfigurationReference {
|
|
3283
|
+
name: string;
|
|
3284
|
+
}
|
|
3285
|
+
export interface V1PriorityLevelConfigurationSpec {
|
|
3286
|
+
exempt?: V1ExemptPriorityLevelConfiguration;
|
|
3287
|
+
limited?: V1LimitedPriorityLevelConfiguration;
|
|
3288
|
+
type: string;
|
|
3289
|
+
}
|
|
3290
|
+
export interface V1PriorityLevelConfigurationStatus {
|
|
3291
|
+
conditions?: V1PriorityLevelConfigurationCondition[];
|
|
3292
|
+
}
|
|
3293
|
+
export interface V1Probe {
|
|
3294
|
+
exec?: V1ExecAction;
|
|
3295
|
+
failureThreshold?: number;
|
|
3296
|
+
grpc?: V1GRPCAction;
|
|
3297
|
+
httpGet?: V1HTTPGetAction;
|
|
3298
|
+
initialDelaySeconds?: number;
|
|
3299
|
+
periodSeconds?: number;
|
|
3300
|
+
successThreshold?: number;
|
|
3301
|
+
tcpSocket?: V1TCPSocketAction;
|
|
3302
|
+
terminationGracePeriodSeconds?: number;
|
|
3303
|
+
timeoutSeconds?: number;
|
|
3304
|
+
}
|
|
3305
|
+
export interface V1ProjectedVolumeSource {
|
|
3306
|
+
defaultMode?: number;
|
|
3307
|
+
sources?: V1VolumeProjection[];
|
|
3308
|
+
}
|
|
3309
|
+
export interface V1QueuingConfiguration {
|
|
3310
|
+
handSize?: number;
|
|
3311
|
+
queueLengthLimit?: number;
|
|
3312
|
+
queues?: number;
|
|
3313
|
+
}
|
|
3314
|
+
export interface V1QuobyteVolumeSource {
|
|
3315
|
+
group?: string;
|
|
3316
|
+
readOnly?: boolean;
|
|
3317
|
+
registry: string;
|
|
3318
|
+
tenant?: string;
|
|
3319
|
+
user?: string;
|
|
3320
|
+
volume: string;
|
|
3321
|
+
}
|
|
3322
|
+
export interface V1RbacSubject {
|
|
3323
|
+
apiGroup?: string;
|
|
3324
|
+
kind: string;
|
|
3325
|
+
name: string;
|
|
3326
|
+
namespace?: string;
|
|
3327
|
+
}
|
|
3328
|
+
export interface V1RBDPersistentVolumeSource {
|
|
3329
|
+
fsType?: string;
|
|
3330
|
+
image: string;
|
|
3331
|
+
keyring?: string;
|
|
3332
|
+
monitors: string[];
|
|
3333
|
+
pool?: string;
|
|
3334
|
+
readOnly?: boolean;
|
|
3335
|
+
secretRef?: V1SecretReference;
|
|
3336
|
+
user?: string;
|
|
3337
|
+
}
|
|
3338
|
+
export interface V1RBDVolumeSource {
|
|
3339
|
+
fsType?: string;
|
|
3340
|
+
image: string;
|
|
3341
|
+
keyring?: string;
|
|
3342
|
+
monitors: string[];
|
|
3343
|
+
pool?: string;
|
|
3344
|
+
readOnly?: boolean;
|
|
3345
|
+
secretRef?: V1LocalObjectReference;
|
|
3346
|
+
user?: string;
|
|
3347
|
+
}
|
|
3348
|
+
export interface V1ReplicaSet {
|
|
3349
|
+
apiVersion?: string;
|
|
3350
|
+
kind?: string;
|
|
3351
|
+
metadata?: V1ObjectMeta;
|
|
3352
|
+
spec?: V1ReplicaSetSpec;
|
|
3353
|
+
status?: V1ReplicaSetStatus;
|
|
3354
|
+
}
|
|
3355
|
+
export interface V1ReplicaSetCondition {
|
|
3356
|
+
lastTransitionTime?: V1Time;
|
|
3357
|
+
message?: string;
|
|
3358
|
+
reason?: string;
|
|
3359
|
+
status: string;
|
|
3360
|
+
type: string;
|
|
3361
|
+
}
|
|
3362
|
+
export interface V1ReplicaSetList {
|
|
3363
|
+
apiVersion?: string;
|
|
3364
|
+
items: V1ReplicaSet[];
|
|
3365
|
+
kind?: string;
|
|
3366
|
+
metadata?: V1ListMeta;
|
|
3367
|
+
}
|
|
3368
|
+
export interface V1ReplicaSetSpec {
|
|
3369
|
+
minReadySeconds?: number;
|
|
3370
|
+
replicas?: number;
|
|
3371
|
+
selector: V1LabelSelector;
|
|
3372
|
+
template?: V1PodTemplateSpec;
|
|
3373
|
+
}
|
|
3374
|
+
export interface V1ReplicaSetStatus {
|
|
3375
|
+
availableReplicas?: number;
|
|
3376
|
+
conditions?: V1ReplicaSetCondition[];
|
|
3377
|
+
fullyLabeledReplicas?: number;
|
|
3378
|
+
observedGeneration?: number;
|
|
3379
|
+
readyReplicas?: number;
|
|
3380
|
+
replicas: number;
|
|
3381
|
+
terminatingReplicas?: number;
|
|
3382
|
+
}
|
|
3383
|
+
export interface V1ReplicationController {
|
|
3384
|
+
apiVersion?: string;
|
|
3385
|
+
kind?: string;
|
|
3386
|
+
metadata?: V1ObjectMeta;
|
|
3387
|
+
spec?: V1ReplicationControllerSpec;
|
|
3388
|
+
status?: V1ReplicationControllerStatus;
|
|
3389
|
+
}
|
|
3390
|
+
export interface V1ReplicationControllerCondition {
|
|
3391
|
+
lastTransitionTime?: V1Time;
|
|
3392
|
+
message?: string;
|
|
3393
|
+
reason?: string;
|
|
3394
|
+
status: string;
|
|
3395
|
+
type: string;
|
|
3396
|
+
}
|
|
3397
|
+
export interface V1ReplicationControllerList {
|
|
3398
|
+
apiVersion?: string;
|
|
3399
|
+
items: V1ReplicationController[];
|
|
3400
|
+
kind?: string;
|
|
3401
|
+
metadata?: V1ListMeta;
|
|
3402
|
+
}
|
|
3403
|
+
export interface V1ReplicationControllerSpec {
|
|
3404
|
+
minReadySeconds?: number;
|
|
3405
|
+
replicas?: number;
|
|
3406
|
+
selector?: Record<string, string>;
|
|
3407
|
+
template?: V1PodTemplateSpec;
|
|
3408
|
+
}
|
|
3409
|
+
export interface V1ReplicationControllerStatus {
|
|
3410
|
+
availableReplicas?: number;
|
|
3411
|
+
conditions?: V1ReplicationControllerCondition[];
|
|
3412
|
+
fullyLabeledReplicas?: number;
|
|
3413
|
+
observedGeneration?: number;
|
|
3414
|
+
readyReplicas?: number;
|
|
3415
|
+
replicas: number;
|
|
3416
|
+
}
|
|
3417
|
+
export interface V1ResourceAttributes {
|
|
3418
|
+
fieldSelector?: V1FieldSelectorAttributes;
|
|
3419
|
+
group?: string;
|
|
3420
|
+
labelSelector?: V1LabelSelectorAttributes;
|
|
3421
|
+
name?: string;
|
|
3422
|
+
namespace?: string;
|
|
3423
|
+
resource?: string;
|
|
3424
|
+
subresource?: string;
|
|
3425
|
+
verb?: string;
|
|
3426
|
+
version?: string;
|
|
3427
|
+
}
|
|
3428
|
+
export interface V1ResourceClaimConsumerReference {
|
|
3429
|
+
apiGroup?: string;
|
|
3430
|
+
name: string;
|
|
3431
|
+
resource: string;
|
|
3432
|
+
uid: string;
|
|
3433
|
+
}
|
|
3434
|
+
export interface V1ResourceClaimList {
|
|
3435
|
+
apiVersion?: string;
|
|
3436
|
+
items: V1ResourceResourceClaim[];
|
|
3437
|
+
kind?: string;
|
|
3438
|
+
metadata?: V1ListMeta;
|
|
3439
|
+
}
|
|
3440
|
+
export interface V1ResourceClaimSpec {
|
|
3441
|
+
devices?: V1DeviceClaim;
|
|
3442
|
+
}
|
|
3443
|
+
export interface V1ResourceClaimStatus {
|
|
3444
|
+
allocation?: V1AllocationResult;
|
|
3445
|
+
devices?: V1AllocatedDeviceStatus[];
|
|
3446
|
+
reservedFor?: V1ResourceClaimConsumerReference[];
|
|
3447
|
+
}
|
|
3448
|
+
export interface V1ResourceClaimTemplate {
|
|
3449
|
+
apiVersion?: string;
|
|
3450
|
+
kind?: string;
|
|
3451
|
+
metadata?: V1ObjectMeta;
|
|
3452
|
+
spec: V1ResourceClaimTemplateSpec;
|
|
3453
|
+
}
|
|
3454
|
+
export interface V1ResourceClaimTemplateList {
|
|
3455
|
+
apiVersion?: string;
|
|
3456
|
+
items: V1ResourceClaimTemplate[];
|
|
3457
|
+
kind?: string;
|
|
3458
|
+
metadata?: V1ListMeta;
|
|
3459
|
+
}
|
|
3460
|
+
export interface V1ResourceClaimTemplateSpec {
|
|
3461
|
+
metadata?: V1ObjectMeta;
|
|
3462
|
+
spec: V1ResourceClaimSpec;
|
|
3463
|
+
}
|
|
3464
|
+
export interface V1ResourceFieldSelector {
|
|
3465
|
+
containerName?: string;
|
|
3466
|
+
divisor?: Quantity;
|
|
3467
|
+
resource: string;
|
|
3468
|
+
}
|
|
3469
|
+
export interface V1ResourceHealth {
|
|
3470
|
+
health?: string;
|
|
3471
|
+
resourceID: string;
|
|
3472
|
+
}
|
|
3473
|
+
export interface V1ResourcePolicyRule {
|
|
3474
|
+
apiGroups: string[];
|
|
3475
|
+
clusterScope?: boolean;
|
|
3476
|
+
namespaces?: string[];
|
|
3477
|
+
resources: string[];
|
|
3478
|
+
verbs: string[];
|
|
3479
|
+
}
|
|
3480
|
+
export interface V1ResourcePool {
|
|
3481
|
+
generation: number;
|
|
3482
|
+
name: string;
|
|
3483
|
+
resourceSliceCount: number;
|
|
3484
|
+
}
|
|
3485
|
+
export interface V1ResourceQuota {
|
|
3486
|
+
apiVersion?: string;
|
|
3487
|
+
kind?: string;
|
|
3488
|
+
metadata?: V1ObjectMeta;
|
|
3489
|
+
spec?: V1ResourceQuotaSpec;
|
|
3490
|
+
status?: V1ResourceQuotaStatus;
|
|
3491
|
+
}
|
|
3492
|
+
export interface V1ResourceQuotaList {
|
|
3493
|
+
apiVersion?: string;
|
|
3494
|
+
items: V1ResourceQuota[];
|
|
3495
|
+
kind?: string;
|
|
3496
|
+
metadata?: V1ListMeta;
|
|
3497
|
+
}
|
|
3498
|
+
export interface V1ResourceQuotaSpec {
|
|
3499
|
+
hard?: Record<string, Quantity>;
|
|
3500
|
+
scopes?: string[];
|
|
3501
|
+
scopeSelector?: V1ScopeSelector;
|
|
3502
|
+
}
|
|
3503
|
+
export interface V1ResourceQuotaStatus {
|
|
3504
|
+
hard?: Record<string, Quantity>;
|
|
3505
|
+
used?: Record<string, Quantity>;
|
|
3506
|
+
}
|
|
3507
|
+
export interface V1ResourceRequirements {
|
|
3508
|
+
claims?: V1CoreResourceClaim[];
|
|
3509
|
+
limits?: Record<string, Quantity>;
|
|
3510
|
+
requests?: Record<string, Quantity>;
|
|
3511
|
+
}
|
|
3512
|
+
export interface V1ResourceResourceClaim {
|
|
3513
|
+
apiVersion?: string;
|
|
3514
|
+
kind?: string;
|
|
3515
|
+
metadata?: V1ObjectMeta;
|
|
3516
|
+
spec: V1ResourceClaimSpec;
|
|
3517
|
+
status?: V1ResourceClaimStatus;
|
|
3518
|
+
}
|
|
3519
|
+
export interface V1ResourceRule {
|
|
3520
|
+
apiGroups?: string[];
|
|
3521
|
+
resourceNames?: string[];
|
|
3522
|
+
resources?: string[];
|
|
3523
|
+
verbs: string[];
|
|
3524
|
+
}
|
|
3525
|
+
export interface V1ResourceSlice {
|
|
3526
|
+
apiVersion?: string;
|
|
3527
|
+
kind?: string;
|
|
3528
|
+
metadata?: V1ObjectMeta;
|
|
3529
|
+
spec: V1ResourceSliceSpec;
|
|
3530
|
+
}
|
|
3531
|
+
export interface V1ResourceSliceList {
|
|
3532
|
+
apiVersion?: string;
|
|
3533
|
+
items: V1ResourceSlice[];
|
|
3534
|
+
kind?: string;
|
|
3535
|
+
metadata?: V1ListMeta;
|
|
3536
|
+
}
|
|
3537
|
+
export interface V1ResourceSliceSpec {
|
|
3538
|
+
allNodes?: boolean;
|
|
3539
|
+
devices?: V1Device[];
|
|
3540
|
+
driver: string;
|
|
3541
|
+
nodeName?: string;
|
|
3542
|
+
nodeSelector?: V1NodeSelector;
|
|
3543
|
+
perDeviceNodeSelection?: boolean;
|
|
3544
|
+
pool: V1ResourcePool;
|
|
3545
|
+
sharedCounters?: V1CounterSet[];
|
|
3546
|
+
}
|
|
3547
|
+
export interface V1ResourceStatus {
|
|
3548
|
+
name: string;
|
|
3549
|
+
resources?: V1ResourceHealth[];
|
|
3550
|
+
}
|
|
3551
|
+
export interface V1Role {
|
|
3552
|
+
apiVersion?: string;
|
|
3553
|
+
kind?: string;
|
|
3554
|
+
metadata?: V1ObjectMeta;
|
|
3555
|
+
rules?: V1PolicyRule[];
|
|
3556
|
+
}
|
|
3557
|
+
export interface V1RoleBinding {
|
|
3558
|
+
apiVersion?: string;
|
|
3559
|
+
kind?: string;
|
|
3560
|
+
metadata?: V1ObjectMeta;
|
|
3561
|
+
roleRef: V1RoleRef;
|
|
3562
|
+
subjects?: V1RbacSubject[];
|
|
3563
|
+
}
|
|
3564
|
+
export interface V1RoleBindingList {
|
|
3565
|
+
apiVersion?: string;
|
|
3566
|
+
items: V1RoleBinding[];
|
|
3567
|
+
kind?: string;
|
|
3568
|
+
metadata?: V1ListMeta;
|
|
3569
|
+
}
|
|
3570
|
+
export interface V1RoleList {
|
|
3571
|
+
apiVersion?: string;
|
|
3572
|
+
items: V1Role[];
|
|
3573
|
+
kind?: string;
|
|
3574
|
+
metadata?: V1ListMeta;
|
|
3575
|
+
}
|
|
3576
|
+
export interface V1RoleRef {
|
|
3577
|
+
apiGroup: string;
|
|
3578
|
+
kind: string;
|
|
3579
|
+
name: string;
|
|
3580
|
+
}
|
|
3581
|
+
export interface V1RollingUpdateDaemonSet {
|
|
3582
|
+
maxSurge?: IntOrString;
|
|
3583
|
+
maxUnavailable?: IntOrString;
|
|
3584
|
+
}
|
|
3585
|
+
export interface V1RollingUpdateDeployment {
|
|
3586
|
+
maxSurge?: IntOrString;
|
|
3587
|
+
maxUnavailable?: IntOrString;
|
|
3588
|
+
}
|
|
3589
|
+
export interface V1RollingUpdateStatefulSetStrategy {
|
|
3590
|
+
maxUnavailable?: IntOrString;
|
|
3591
|
+
partition?: number;
|
|
3592
|
+
}
|
|
3593
|
+
export interface V1RuleWithOperations {
|
|
3594
|
+
apiGroups?: string[];
|
|
3595
|
+
apiVersions?: string[];
|
|
3596
|
+
operations?: string[];
|
|
3597
|
+
resources?: string[];
|
|
3598
|
+
scope?: string;
|
|
3599
|
+
}
|
|
3600
|
+
export interface V1RuntimeClass {
|
|
3601
|
+
apiVersion?: string;
|
|
3602
|
+
handler: string;
|
|
3603
|
+
kind?: string;
|
|
3604
|
+
metadata?: V1ObjectMeta;
|
|
3605
|
+
overhead?: V1Overhead;
|
|
3606
|
+
scheduling?: V1Scheduling;
|
|
3607
|
+
}
|
|
3608
|
+
export interface V1RuntimeClassList {
|
|
3609
|
+
apiVersion?: string;
|
|
3610
|
+
items: V1RuntimeClass[];
|
|
3611
|
+
kind?: string;
|
|
3612
|
+
metadata?: V1ListMeta;
|
|
3613
|
+
}
|
|
3614
|
+
export interface V1Scale {
|
|
3615
|
+
apiVersion?: string;
|
|
3616
|
+
kind?: string;
|
|
3617
|
+
metadata?: V1ObjectMeta;
|
|
3618
|
+
spec?: V1ScaleSpec;
|
|
3619
|
+
status?: V1ScaleStatus;
|
|
3620
|
+
}
|
|
3621
|
+
export interface V1ScaleIOPersistentVolumeSource {
|
|
3622
|
+
fsType?: string;
|
|
3623
|
+
gateway: string;
|
|
3624
|
+
protectionDomain?: string;
|
|
3625
|
+
readOnly?: boolean;
|
|
3626
|
+
secretRef: V1SecretReference;
|
|
3627
|
+
sslEnabled?: boolean;
|
|
3628
|
+
storageMode?: string;
|
|
3629
|
+
storagePool?: string;
|
|
3630
|
+
system: string;
|
|
3631
|
+
volumeName?: string;
|
|
3632
|
+
}
|
|
3633
|
+
export interface V1ScaleIOVolumeSource {
|
|
3634
|
+
fsType?: string;
|
|
3635
|
+
gateway: string;
|
|
3636
|
+
protectionDomain?: string;
|
|
3637
|
+
readOnly?: boolean;
|
|
3638
|
+
secretRef: V1LocalObjectReference;
|
|
3639
|
+
sslEnabled?: boolean;
|
|
3640
|
+
storageMode?: string;
|
|
3641
|
+
storagePool?: string;
|
|
3642
|
+
system: string;
|
|
3643
|
+
volumeName?: string;
|
|
3644
|
+
}
|
|
3645
|
+
export interface V1ScaleSpec {
|
|
3646
|
+
replicas?: number;
|
|
3647
|
+
}
|
|
3648
|
+
export interface V1ScaleStatus {
|
|
3649
|
+
replicas: number;
|
|
3650
|
+
selector?: string;
|
|
3651
|
+
}
|
|
3652
|
+
export interface V1Scheduling {
|
|
3653
|
+
nodeSelector?: Record<string, string>;
|
|
3654
|
+
tolerations?: V1Toleration[];
|
|
3655
|
+
}
|
|
3656
|
+
export interface V1ScopedResourceSelectorRequirement {
|
|
3657
|
+
operator: string;
|
|
3658
|
+
scopeName: string;
|
|
3659
|
+
values?: string[];
|
|
3660
|
+
}
|
|
3661
|
+
export interface V1ScopeSelector {
|
|
3662
|
+
matchExpressions?: V1ScopedResourceSelectorRequirement[];
|
|
3663
|
+
}
|
|
3664
|
+
export interface V1SeccompProfile {
|
|
3665
|
+
localhostProfile?: string;
|
|
3666
|
+
type: string;
|
|
3667
|
+
}
|
|
3668
|
+
export interface V1Secret {
|
|
3669
|
+
apiVersion?: string;
|
|
3670
|
+
data?: Record<string, string>;
|
|
3671
|
+
immutable?: boolean;
|
|
3672
|
+
kind?: string;
|
|
3673
|
+
metadata?: V1ObjectMeta;
|
|
3674
|
+
stringData?: Record<string, string>;
|
|
3675
|
+
type?: string;
|
|
3676
|
+
}
|
|
3677
|
+
export interface V1SecretEnvSource {
|
|
3678
|
+
name?: string;
|
|
3679
|
+
optional?: boolean;
|
|
3680
|
+
}
|
|
3681
|
+
export interface V1SecretKeySelector {
|
|
3682
|
+
key: string;
|
|
3683
|
+
name?: string;
|
|
3684
|
+
optional?: boolean;
|
|
3685
|
+
}
|
|
3686
|
+
export interface V1SecretList {
|
|
3687
|
+
apiVersion?: string;
|
|
3688
|
+
items: V1Secret[];
|
|
3689
|
+
kind?: string;
|
|
3690
|
+
metadata?: V1ListMeta;
|
|
3691
|
+
}
|
|
3692
|
+
export interface V1SecretProjection {
|
|
3693
|
+
items?: V1KeyToPath[];
|
|
3694
|
+
name?: string;
|
|
3695
|
+
optional?: boolean;
|
|
3696
|
+
}
|
|
3697
|
+
export interface V1SecretReference {
|
|
3698
|
+
name?: string;
|
|
3699
|
+
namespace?: string;
|
|
3700
|
+
}
|
|
3701
|
+
export interface V1SecretVolumeSource {
|
|
3702
|
+
defaultMode?: number;
|
|
3703
|
+
items?: V1KeyToPath[];
|
|
3704
|
+
optional?: boolean;
|
|
3705
|
+
secretName?: string;
|
|
3706
|
+
}
|
|
3707
|
+
export interface V1SecurityContext {
|
|
3708
|
+
allowPrivilegeEscalation?: boolean;
|
|
3709
|
+
appArmorProfile?: V1AppArmorProfile;
|
|
3710
|
+
capabilities?: V1Capabilities;
|
|
3711
|
+
privileged?: boolean;
|
|
3712
|
+
procMount?: string;
|
|
3713
|
+
readOnlyRootFilesystem?: boolean;
|
|
3714
|
+
runAsGroup?: number;
|
|
3715
|
+
runAsNonRoot?: boolean;
|
|
3716
|
+
runAsUser?: number;
|
|
3717
|
+
seccompProfile?: V1SeccompProfile;
|
|
3718
|
+
seLinuxOptions?: V1SELinuxOptions;
|
|
3719
|
+
windowsOptions?: V1WindowsSecurityContextOptions;
|
|
3720
|
+
}
|
|
3721
|
+
export interface V1SelectableField {
|
|
3722
|
+
jsonPath: string;
|
|
3723
|
+
}
|
|
3724
|
+
export interface V1SelfSubjectAccessReview {
|
|
3725
|
+
apiVersion?: string;
|
|
3726
|
+
kind?: string;
|
|
3727
|
+
metadata?: V1ObjectMeta;
|
|
3728
|
+
spec: V1SelfSubjectAccessReviewSpec;
|
|
3729
|
+
status?: V1SubjectAccessReviewStatus;
|
|
3730
|
+
}
|
|
3731
|
+
export interface V1SelfSubjectAccessReviewSpec {
|
|
3732
|
+
nonResourceAttributes?: V1NonResourceAttributes;
|
|
3733
|
+
resourceAttributes?: V1ResourceAttributes;
|
|
3734
|
+
}
|
|
3735
|
+
export interface V1SelfSubjectReview {
|
|
3736
|
+
apiVersion?: string;
|
|
3737
|
+
kind?: string;
|
|
3738
|
+
metadata?: V1ObjectMeta;
|
|
3739
|
+
status?: V1SelfSubjectReviewStatus;
|
|
3740
|
+
}
|
|
3741
|
+
export interface V1SelfSubjectReviewStatus {
|
|
3742
|
+
userInfo?: V1UserInfo;
|
|
3743
|
+
}
|
|
3744
|
+
export interface V1SelfSubjectRulesReview {
|
|
3745
|
+
apiVersion?: string;
|
|
3746
|
+
kind?: string;
|
|
3747
|
+
metadata?: V1ObjectMeta;
|
|
3748
|
+
spec: V1SelfSubjectRulesReviewSpec;
|
|
3749
|
+
status?: V1SubjectRulesReviewStatus;
|
|
3750
|
+
}
|
|
3751
|
+
export interface V1SelfSubjectRulesReviewSpec {
|
|
3752
|
+
namespace?: string;
|
|
3753
|
+
}
|
|
3754
|
+
export interface V1SELinuxOptions {
|
|
3755
|
+
level?: string;
|
|
3756
|
+
role?: string;
|
|
3757
|
+
type?: string;
|
|
3758
|
+
user?: string;
|
|
3759
|
+
}
|
|
3760
|
+
export interface V1ServerAddressByClientCIDR {
|
|
3761
|
+
clientCIDR: string;
|
|
3762
|
+
serverAddress: string;
|
|
3763
|
+
}
|
|
3764
|
+
export interface V1Service {
|
|
3765
|
+
apiVersion?: string;
|
|
3766
|
+
kind?: string;
|
|
3767
|
+
metadata?: V1ObjectMeta;
|
|
3768
|
+
spec?: V1ServiceSpec;
|
|
3769
|
+
status?: V1ServiceStatus;
|
|
3770
|
+
}
|
|
3771
|
+
export interface V1ServiceAccount {
|
|
3772
|
+
apiVersion?: string;
|
|
3773
|
+
automountServiceAccountToken?: boolean;
|
|
3774
|
+
imagePullSecrets?: V1LocalObjectReference[];
|
|
3775
|
+
kind?: string;
|
|
3776
|
+
metadata?: V1ObjectMeta;
|
|
3777
|
+
secrets?: V1ObjectReference[];
|
|
3778
|
+
}
|
|
3779
|
+
export interface V1ServiceAccountList {
|
|
3780
|
+
apiVersion?: string;
|
|
3781
|
+
items: V1ServiceAccount[];
|
|
3782
|
+
kind?: string;
|
|
3783
|
+
metadata?: V1ListMeta;
|
|
3784
|
+
}
|
|
3785
|
+
export interface V1ServiceAccountSubject {
|
|
3786
|
+
name: string;
|
|
3787
|
+
namespace: string;
|
|
3788
|
+
}
|
|
3789
|
+
export interface V1ServiceAccountTokenProjection {
|
|
3790
|
+
audience?: string;
|
|
3791
|
+
expirationSeconds?: number;
|
|
3792
|
+
path: string;
|
|
3793
|
+
}
|
|
3794
|
+
export interface V1ServiceBackendPort {
|
|
3795
|
+
name?: string;
|
|
3796
|
+
number?: number;
|
|
3797
|
+
}
|
|
3798
|
+
export interface V1ServiceCIDR {
|
|
3799
|
+
apiVersion?: string;
|
|
3800
|
+
kind?: string;
|
|
3801
|
+
metadata?: V1ObjectMeta;
|
|
3802
|
+
spec?: V1ServiceCIDRSpec;
|
|
3803
|
+
status?: V1ServiceCIDRStatus;
|
|
3804
|
+
}
|
|
3805
|
+
export interface V1ServiceCIDRList {
|
|
3806
|
+
apiVersion?: string;
|
|
3807
|
+
items: V1ServiceCIDR[];
|
|
3808
|
+
kind?: string;
|
|
3809
|
+
metadata?: V1ListMeta;
|
|
3810
|
+
}
|
|
3811
|
+
export interface V1ServiceCIDRSpec {
|
|
3812
|
+
cidrs?: string[];
|
|
3813
|
+
}
|
|
3814
|
+
export interface V1ServiceCIDRStatus {
|
|
3815
|
+
conditions?: V1Condition[];
|
|
3816
|
+
}
|
|
3817
|
+
export interface V1ServiceList {
|
|
3818
|
+
apiVersion?: string;
|
|
3819
|
+
items: V1Service[];
|
|
3820
|
+
kind?: string;
|
|
3821
|
+
metadata?: V1ListMeta;
|
|
3822
|
+
}
|
|
3823
|
+
export interface V1ServicePort {
|
|
3824
|
+
appProtocol?: string;
|
|
3825
|
+
name?: string;
|
|
3826
|
+
nodePort?: number;
|
|
3827
|
+
port: number;
|
|
3828
|
+
protocol?: string;
|
|
3829
|
+
targetPort?: IntOrString;
|
|
3830
|
+
}
|
|
3831
|
+
export interface V1ServiceSpec {
|
|
3832
|
+
allocateLoadBalancerNodePorts?: boolean;
|
|
3833
|
+
clusterIP?: string;
|
|
3834
|
+
clusterIPs?: string[];
|
|
3835
|
+
externalIPs?: string[];
|
|
3836
|
+
externalName?: string;
|
|
3837
|
+
externalTrafficPolicy?: string;
|
|
3838
|
+
healthCheckNodePort?: number;
|
|
3839
|
+
internalTrafficPolicy?: string;
|
|
3840
|
+
ipFamilies?: string[];
|
|
3841
|
+
ipFamilyPolicy?: string;
|
|
3842
|
+
loadBalancerClass?: string;
|
|
3843
|
+
loadBalancerIP?: string;
|
|
3844
|
+
loadBalancerSourceRanges?: string[];
|
|
3845
|
+
ports?: V1ServicePort[];
|
|
3846
|
+
publishNotReadyAddresses?: boolean;
|
|
3847
|
+
selector?: Record<string, string>;
|
|
3848
|
+
sessionAffinity?: string;
|
|
3849
|
+
sessionAffinityConfig?: V1SessionAffinityConfig;
|
|
3850
|
+
trafficDistribution?: string;
|
|
3851
|
+
type?: string;
|
|
3852
|
+
}
|
|
3853
|
+
export interface V1ServiceStatus {
|
|
3854
|
+
conditions?: V1Condition[];
|
|
3855
|
+
loadBalancer?: V1LoadBalancerStatus;
|
|
3856
|
+
}
|
|
3857
|
+
export interface V1SessionAffinityConfig {
|
|
3858
|
+
clientIP?: V1ClientIPConfig;
|
|
3859
|
+
}
|
|
3860
|
+
export interface V1SleepAction {
|
|
3861
|
+
seconds: number;
|
|
3862
|
+
}
|
|
3863
|
+
export interface V1StatefulSet {
|
|
3864
|
+
apiVersion?: string;
|
|
3865
|
+
kind?: string;
|
|
3866
|
+
metadata?: V1ObjectMeta;
|
|
3867
|
+
spec?: V1StatefulSetSpec;
|
|
3868
|
+
status?: V1StatefulSetStatus;
|
|
3869
|
+
}
|
|
3870
|
+
export interface V1StatefulSetCondition {
|
|
3871
|
+
lastTransitionTime?: V1Time;
|
|
3872
|
+
message?: string;
|
|
3873
|
+
reason?: string;
|
|
3874
|
+
status: string;
|
|
3875
|
+
type: string;
|
|
3876
|
+
}
|
|
3877
|
+
export interface V1StatefulSetList {
|
|
3878
|
+
apiVersion?: string;
|
|
3879
|
+
items: V1StatefulSet[];
|
|
3880
|
+
kind?: string;
|
|
3881
|
+
metadata?: V1ListMeta;
|
|
3882
|
+
}
|
|
3883
|
+
export interface V1StatefulSetOrdinals {
|
|
3884
|
+
start?: number;
|
|
3885
|
+
}
|
|
3886
|
+
export interface V1StatefulSetPersistentVolumeClaimRetentionPolicy {
|
|
3887
|
+
whenDeleted?: string;
|
|
3888
|
+
whenScaled?: string;
|
|
3889
|
+
}
|
|
3890
|
+
export interface V1StatefulSetSpec {
|
|
3891
|
+
minReadySeconds?: number;
|
|
3892
|
+
ordinals?: V1StatefulSetOrdinals;
|
|
3893
|
+
persistentVolumeClaimRetentionPolicy?: V1StatefulSetPersistentVolumeClaimRetentionPolicy;
|
|
3894
|
+
podManagementPolicy?: string;
|
|
3895
|
+
replicas?: number;
|
|
3896
|
+
revisionHistoryLimit?: number;
|
|
3897
|
+
selector: V1LabelSelector;
|
|
3898
|
+
serviceName?: string;
|
|
3899
|
+
template: V1PodTemplateSpec;
|
|
3900
|
+
updateStrategy?: V1StatefulSetUpdateStrategy;
|
|
3901
|
+
volumeClaimTemplates?: V1PersistentVolumeClaim[];
|
|
3902
|
+
}
|
|
3903
|
+
export interface V1StatefulSetStatus {
|
|
3904
|
+
availableReplicas?: number;
|
|
3905
|
+
collisionCount?: number;
|
|
3906
|
+
conditions?: V1StatefulSetCondition[];
|
|
3907
|
+
currentReplicas?: number;
|
|
3908
|
+
currentRevision?: string;
|
|
3909
|
+
observedGeneration?: number;
|
|
3910
|
+
readyReplicas?: number;
|
|
3911
|
+
replicas: number;
|
|
3912
|
+
updatedReplicas?: number;
|
|
3913
|
+
updateRevision?: string;
|
|
3914
|
+
}
|
|
3915
|
+
export interface V1StatefulSetUpdateStrategy {
|
|
3916
|
+
rollingUpdate?: V1RollingUpdateStatefulSetStrategy;
|
|
3917
|
+
type?: string;
|
|
3918
|
+
}
|
|
3919
|
+
export interface V1Status {
|
|
3920
|
+
apiVersion?: string;
|
|
3921
|
+
code?: number;
|
|
3922
|
+
details?: V1StatusDetails;
|
|
3923
|
+
kind?: string;
|
|
3924
|
+
message?: string;
|
|
3925
|
+
metadata?: V1ListMeta;
|
|
3926
|
+
reason?: string;
|
|
3927
|
+
status?: string;
|
|
3928
|
+
}
|
|
3929
|
+
export interface V1StatusCause {
|
|
3930
|
+
field?: string;
|
|
3931
|
+
message?: string;
|
|
3932
|
+
reason?: string;
|
|
3933
|
+
}
|
|
3934
|
+
export interface V1StatusDetails {
|
|
3935
|
+
causes?: V1StatusCause[];
|
|
3936
|
+
group?: string;
|
|
3937
|
+
kind?: string;
|
|
3938
|
+
name?: string;
|
|
3939
|
+
retryAfterSeconds?: number;
|
|
3940
|
+
uid?: string;
|
|
3941
|
+
}
|
|
3942
|
+
export interface V1StorageClass {
|
|
3943
|
+
allowedTopologies?: V1TopologySelectorTerm[];
|
|
3944
|
+
allowVolumeExpansion?: boolean;
|
|
3945
|
+
apiVersion?: string;
|
|
3946
|
+
kind?: string;
|
|
3947
|
+
metadata?: V1ObjectMeta;
|
|
3948
|
+
mountOptions?: string[];
|
|
3949
|
+
parameters?: Record<string, string>;
|
|
3950
|
+
provisioner: string;
|
|
3951
|
+
reclaimPolicy?: string;
|
|
3952
|
+
volumeBindingMode?: string;
|
|
3953
|
+
}
|
|
3954
|
+
export interface V1StorageClassList {
|
|
3955
|
+
apiVersion?: string;
|
|
3956
|
+
items: V1StorageClass[];
|
|
3957
|
+
kind?: string;
|
|
3958
|
+
metadata?: V1ListMeta;
|
|
3959
|
+
}
|
|
3960
|
+
export interface V1StorageOSPersistentVolumeSource {
|
|
3961
|
+
fsType?: string;
|
|
3962
|
+
readOnly?: boolean;
|
|
3963
|
+
secretRef?: V1ObjectReference;
|
|
3964
|
+
volumeName?: string;
|
|
3965
|
+
volumeNamespace?: string;
|
|
3966
|
+
}
|
|
3967
|
+
export interface V1StorageOSVolumeSource {
|
|
3968
|
+
fsType?: string;
|
|
3969
|
+
readOnly?: boolean;
|
|
3970
|
+
secretRef?: V1LocalObjectReference;
|
|
3971
|
+
volumeName?: string;
|
|
3972
|
+
volumeNamespace?: string;
|
|
3973
|
+
}
|
|
3974
|
+
export interface V1StorageTokenRequest {
|
|
3975
|
+
audience: string;
|
|
3976
|
+
expirationSeconds?: number;
|
|
3977
|
+
}
|
|
3978
|
+
export interface V1SubjectAccessReview {
|
|
3979
|
+
apiVersion?: string;
|
|
3980
|
+
kind?: string;
|
|
3981
|
+
metadata?: V1ObjectMeta;
|
|
3982
|
+
spec: V1SubjectAccessReviewSpec;
|
|
3983
|
+
status?: V1SubjectAccessReviewStatus;
|
|
3984
|
+
}
|
|
3985
|
+
export interface V1SubjectAccessReviewSpec {
|
|
3986
|
+
extra?: Record<string, string[]>;
|
|
3987
|
+
groups?: string[];
|
|
3988
|
+
nonResourceAttributes?: V1NonResourceAttributes;
|
|
3989
|
+
resourceAttributes?: V1ResourceAttributes;
|
|
3990
|
+
uid?: string;
|
|
3991
|
+
user?: string;
|
|
3992
|
+
}
|
|
3993
|
+
export interface V1SubjectAccessReviewStatus {
|
|
3994
|
+
allowed: boolean;
|
|
3995
|
+
denied?: boolean;
|
|
3996
|
+
evaluationError?: string;
|
|
3997
|
+
reason?: string;
|
|
3998
|
+
}
|
|
3999
|
+
export interface V1SubjectRulesReviewStatus {
|
|
4000
|
+
evaluationError?: string;
|
|
4001
|
+
incomplete: boolean;
|
|
4002
|
+
nonResourceRules: V1NonResourceRule[];
|
|
4003
|
+
resourceRules: V1ResourceRule[];
|
|
4004
|
+
}
|
|
4005
|
+
export interface V1SuccessPolicy {
|
|
4006
|
+
rules: V1SuccessPolicyRule[];
|
|
4007
|
+
}
|
|
4008
|
+
export interface V1SuccessPolicyRule {
|
|
4009
|
+
succeededCount?: number;
|
|
4010
|
+
succeededIndexes?: string;
|
|
4011
|
+
}
|
|
4012
|
+
export interface V1Sysctl {
|
|
4013
|
+
name: string;
|
|
4014
|
+
value: string;
|
|
4015
|
+
}
|
|
4016
|
+
export interface V1Taint {
|
|
4017
|
+
effect: string;
|
|
4018
|
+
key: string;
|
|
4019
|
+
timeAdded?: V1Time;
|
|
4020
|
+
value?: string;
|
|
4021
|
+
}
|
|
4022
|
+
export interface V1TCPSocketAction {
|
|
4023
|
+
host?: string;
|
|
4024
|
+
port: IntOrString;
|
|
4025
|
+
}
|
|
4026
|
+
export interface V1Time {
|
|
4027
|
+
[key: string]: unknown;
|
|
4028
|
+
}
|
|
4029
|
+
export interface V1TokenRequestSpec {
|
|
4030
|
+
audiences: string[];
|
|
4031
|
+
boundObjectRef?: V1BoundObjectReference;
|
|
4032
|
+
expirationSeconds?: number;
|
|
4033
|
+
}
|
|
4034
|
+
export interface V1TokenRequestStatus {
|
|
4035
|
+
expirationTimestamp: V1Time;
|
|
4036
|
+
token: string;
|
|
4037
|
+
}
|
|
4038
|
+
export interface V1TokenReview {
|
|
4039
|
+
apiVersion?: string;
|
|
4040
|
+
kind?: string;
|
|
4041
|
+
metadata?: V1ObjectMeta;
|
|
4042
|
+
spec: V1TokenReviewSpec;
|
|
4043
|
+
status?: V1TokenReviewStatus;
|
|
4044
|
+
}
|
|
4045
|
+
export interface V1TokenReviewSpec {
|
|
4046
|
+
audiences?: string[];
|
|
4047
|
+
token?: string;
|
|
4048
|
+
}
|
|
4049
|
+
export interface V1TokenReviewStatus {
|
|
4050
|
+
audiences?: string[];
|
|
4051
|
+
authenticated?: boolean;
|
|
4052
|
+
error?: string;
|
|
4053
|
+
user?: V1UserInfo;
|
|
4054
|
+
}
|
|
4055
|
+
export interface V1Toleration {
|
|
4056
|
+
effect?: string;
|
|
4057
|
+
key?: string;
|
|
4058
|
+
operator?: string;
|
|
4059
|
+
tolerationSeconds?: number;
|
|
4060
|
+
value?: string;
|
|
4061
|
+
}
|
|
4062
|
+
export interface V1TopologySelectorLabelRequirement {
|
|
4063
|
+
key: string;
|
|
4064
|
+
values: string[];
|
|
4065
|
+
}
|
|
4066
|
+
export interface V1TopologySelectorTerm {
|
|
4067
|
+
matchLabelExpressions?: V1TopologySelectorLabelRequirement[];
|
|
4068
|
+
}
|
|
4069
|
+
export interface V1TopologySpreadConstraint {
|
|
4070
|
+
labelSelector?: V1LabelSelector;
|
|
4071
|
+
matchLabelKeys?: string[];
|
|
4072
|
+
maxSkew: number;
|
|
4073
|
+
minDomains?: number;
|
|
4074
|
+
nodeAffinityPolicy?: string;
|
|
4075
|
+
nodeTaintsPolicy?: string;
|
|
4076
|
+
topologyKey: string;
|
|
4077
|
+
whenUnsatisfiable: string;
|
|
4078
|
+
}
|
|
4079
|
+
export interface V1TypeChecking {
|
|
4080
|
+
expressionWarnings?: V1ExpressionWarning[];
|
|
4081
|
+
}
|
|
4082
|
+
export interface V1TypedLocalObjectReference {
|
|
4083
|
+
apiGroup?: string;
|
|
4084
|
+
kind: string;
|
|
4085
|
+
name: string;
|
|
4086
|
+
}
|
|
4087
|
+
export interface V1TypedObjectReference {
|
|
4088
|
+
apiGroup?: string;
|
|
4089
|
+
kind: string;
|
|
4090
|
+
name: string;
|
|
4091
|
+
namespace?: string;
|
|
4092
|
+
}
|
|
4093
|
+
export interface V1UncountedTerminatedPods {
|
|
4094
|
+
failed?: string[];
|
|
4095
|
+
succeeded?: string[];
|
|
4096
|
+
}
|
|
4097
|
+
export interface V1UserInfo {
|
|
4098
|
+
extra?: Record<string, string[]>;
|
|
4099
|
+
groups?: string[];
|
|
4100
|
+
uid?: string;
|
|
4101
|
+
username?: string;
|
|
4102
|
+
}
|
|
4103
|
+
export interface V1UserSubject {
|
|
4104
|
+
name: string;
|
|
4105
|
+
}
|
|
4106
|
+
export interface V1ValidatingAdmissionPolicy {
|
|
4107
|
+
apiVersion?: string;
|
|
4108
|
+
kind?: string;
|
|
4109
|
+
metadata?: V1ObjectMeta;
|
|
4110
|
+
spec?: V1ValidatingAdmissionPolicySpec;
|
|
4111
|
+
status?: V1ValidatingAdmissionPolicyStatus;
|
|
4112
|
+
}
|
|
4113
|
+
export interface V1ValidatingAdmissionPolicyBinding {
|
|
4114
|
+
apiVersion?: string;
|
|
4115
|
+
kind?: string;
|
|
4116
|
+
metadata?: V1ObjectMeta;
|
|
4117
|
+
spec?: V1ValidatingAdmissionPolicyBindingSpec;
|
|
4118
|
+
}
|
|
4119
|
+
export interface V1ValidatingAdmissionPolicyBindingList {
|
|
4120
|
+
apiVersion?: string;
|
|
4121
|
+
items: V1ValidatingAdmissionPolicyBinding[];
|
|
4122
|
+
kind?: string;
|
|
4123
|
+
metadata?: V1ListMeta;
|
|
4124
|
+
}
|
|
4125
|
+
export interface V1ValidatingAdmissionPolicyBindingSpec {
|
|
4126
|
+
matchResources?: V1MatchResources;
|
|
4127
|
+
paramRef?: V1ParamRef;
|
|
4128
|
+
policyName?: string;
|
|
4129
|
+
validationActions?: string[];
|
|
4130
|
+
}
|
|
4131
|
+
export interface V1ValidatingAdmissionPolicyList {
|
|
4132
|
+
apiVersion?: string;
|
|
4133
|
+
items: V1ValidatingAdmissionPolicy[];
|
|
4134
|
+
kind?: string;
|
|
4135
|
+
metadata?: V1ListMeta;
|
|
4136
|
+
}
|
|
4137
|
+
export interface V1ValidatingAdmissionPolicySpec {
|
|
4138
|
+
auditAnnotations?: V1AuditAnnotation[];
|
|
4139
|
+
failurePolicy?: string;
|
|
4140
|
+
matchConditions?: V1MatchCondition[];
|
|
4141
|
+
matchConstraints?: V1MatchResources;
|
|
4142
|
+
paramKind?: V1ParamKind;
|
|
4143
|
+
validations?: V1Validation[];
|
|
4144
|
+
variables?: V1Variable[];
|
|
4145
|
+
}
|
|
4146
|
+
export interface V1ValidatingAdmissionPolicyStatus {
|
|
4147
|
+
conditions?: V1Condition[];
|
|
4148
|
+
observedGeneration?: number;
|
|
4149
|
+
typeChecking?: V1TypeChecking;
|
|
4150
|
+
}
|
|
4151
|
+
export interface V1ValidatingWebhook {
|
|
4152
|
+
admissionReviewVersions: string[];
|
|
4153
|
+
clientConfig: V1AdmissionregistrationWebhookClientConfig;
|
|
4154
|
+
failurePolicy?: string;
|
|
4155
|
+
matchConditions?: V1MatchCondition[];
|
|
4156
|
+
matchPolicy?: string;
|
|
4157
|
+
name: string;
|
|
4158
|
+
namespaceSelector?: V1LabelSelector;
|
|
4159
|
+
objectSelector?: V1LabelSelector;
|
|
4160
|
+
rules?: V1RuleWithOperations[];
|
|
4161
|
+
sideEffects: string;
|
|
4162
|
+
timeoutSeconds?: number;
|
|
4163
|
+
}
|
|
4164
|
+
export interface V1ValidatingWebhookConfiguration {
|
|
4165
|
+
apiVersion?: string;
|
|
4166
|
+
kind?: string;
|
|
4167
|
+
metadata?: V1ObjectMeta;
|
|
4168
|
+
webhooks?: V1ValidatingWebhook[];
|
|
4169
|
+
}
|
|
4170
|
+
export interface V1ValidatingWebhookConfigurationList {
|
|
4171
|
+
apiVersion?: string;
|
|
4172
|
+
items: V1ValidatingWebhookConfiguration[];
|
|
4173
|
+
kind?: string;
|
|
4174
|
+
metadata?: V1ListMeta;
|
|
4175
|
+
}
|
|
4176
|
+
export interface V1Validation {
|
|
4177
|
+
expression: string;
|
|
4178
|
+
message?: string;
|
|
4179
|
+
messageExpression?: string;
|
|
4180
|
+
reason?: string;
|
|
4181
|
+
}
|
|
4182
|
+
export interface V1ValidationRule {
|
|
4183
|
+
fieldPath?: string;
|
|
4184
|
+
message?: string;
|
|
4185
|
+
messageExpression?: string;
|
|
4186
|
+
optionalOldSelf?: boolean;
|
|
4187
|
+
reason?: string;
|
|
4188
|
+
rule: string;
|
|
4189
|
+
}
|
|
4190
|
+
export interface V1Variable {
|
|
4191
|
+
expression: string;
|
|
4192
|
+
name: string;
|
|
4193
|
+
}
|
|
4194
|
+
export interface V1Volume {
|
|
4195
|
+
awsElasticBlockStore?: V1AWSElasticBlockStoreVolumeSource;
|
|
4196
|
+
azureDisk?: V1AzureDiskVolumeSource;
|
|
4197
|
+
azureFile?: V1AzureFileVolumeSource;
|
|
4198
|
+
cephfs?: V1CephFSVolumeSource;
|
|
4199
|
+
cinder?: V1CinderVolumeSource;
|
|
4200
|
+
configMap?: V1ConfigMapVolumeSource;
|
|
4201
|
+
csi?: V1CSIVolumeSource;
|
|
4202
|
+
downwardAPI?: V1DownwardAPIVolumeSource;
|
|
4203
|
+
emptyDir?: V1EmptyDirVolumeSource;
|
|
4204
|
+
ephemeral?: V1EphemeralVolumeSource;
|
|
4205
|
+
fc?: V1FCVolumeSource;
|
|
4206
|
+
flexVolume?: V1FlexVolumeSource;
|
|
4207
|
+
flocker?: V1FlockerVolumeSource;
|
|
4208
|
+
gcePersistentDisk?: V1GCEPersistentDiskVolumeSource;
|
|
4209
|
+
gitRepo?: V1GitRepoVolumeSource;
|
|
4210
|
+
glusterfs?: V1GlusterfsVolumeSource;
|
|
4211
|
+
hostPath?: V1HostPathVolumeSource;
|
|
4212
|
+
image?: V1ImageVolumeSource;
|
|
4213
|
+
iscsi?: V1ISCSIVolumeSource;
|
|
4214
|
+
name: string;
|
|
4215
|
+
nfs?: V1NFSVolumeSource;
|
|
4216
|
+
persistentVolumeClaim?: V1PersistentVolumeClaimVolumeSource;
|
|
4217
|
+
photonPersistentDisk?: V1PhotonPersistentDiskVolumeSource;
|
|
4218
|
+
portworxVolume?: V1PortworxVolumeSource;
|
|
4219
|
+
projected?: V1ProjectedVolumeSource;
|
|
4220
|
+
quobyte?: V1QuobyteVolumeSource;
|
|
4221
|
+
rbd?: V1RBDVolumeSource;
|
|
4222
|
+
scaleIO?: V1ScaleIOVolumeSource;
|
|
4223
|
+
secret?: V1SecretVolumeSource;
|
|
4224
|
+
storageos?: V1StorageOSVolumeSource;
|
|
4225
|
+
vsphereVolume?: V1VsphereVirtualDiskVolumeSource;
|
|
4226
|
+
}
|
|
4227
|
+
export interface V1VolumeAttachment {
|
|
4228
|
+
apiVersion?: string;
|
|
4229
|
+
kind?: string;
|
|
4230
|
+
metadata?: V1ObjectMeta;
|
|
4231
|
+
spec: V1VolumeAttachmentSpec;
|
|
4232
|
+
status?: V1VolumeAttachmentStatus;
|
|
4233
|
+
}
|
|
4234
|
+
export interface V1VolumeAttachmentList {
|
|
4235
|
+
apiVersion?: string;
|
|
4236
|
+
items: V1VolumeAttachment[];
|
|
4237
|
+
kind?: string;
|
|
4238
|
+
metadata?: V1ListMeta;
|
|
4239
|
+
}
|
|
4240
|
+
export interface V1VolumeAttachmentSource {
|
|
4241
|
+
inlineVolumeSpec?: V1PersistentVolumeSpec;
|
|
4242
|
+
persistentVolumeName?: string;
|
|
4243
|
+
}
|
|
4244
|
+
export interface V1VolumeAttachmentSpec {
|
|
4245
|
+
attacher: string;
|
|
4246
|
+
nodeName: string;
|
|
4247
|
+
source: V1VolumeAttachmentSource;
|
|
4248
|
+
}
|
|
4249
|
+
export interface V1VolumeAttachmentStatus {
|
|
4250
|
+
attached: boolean;
|
|
4251
|
+
attachError?: V1VolumeError;
|
|
4252
|
+
attachmentMetadata?: Record<string, string>;
|
|
4253
|
+
detachError?: V1VolumeError;
|
|
4254
|
+
}
|
|
4255
|
+
export interface V1VolumeAttributesClass {
|
|
4256
|
+
apiVersion?: string;
|
|
4257
|
+
driverName: string;
|
|
4258
|
+
kind?: string;
|
|
4259
|
+
metadata?: V1ObjectMeta;
|
|
4260
|
+
parameters?: Record<string, string>;
|
|
4261
|
+
}
|
|
4262
|
+
export interface V1VolumeAttributesClassList {
|
|
4263
|
+
apiVersion?: string;
|
|
4264
|
+
items: V1VolumeAttributesClass[];
|
|
4265
|
+
kind?: string;
|
|
4266
|
+
metadata?: V1ListMeta;
|
|
4267
|
+
}
|
|
4268
|
+
export interface V1VolumeDevice {
|
|
4269
|
+
devicePath: string;
|
|
4270
|
+
name: string;
|
|
4271
|
+
}
|
|
4272
|
+
export interface V1VolumeError {
|
|
4273
|
+
errorCode?: number;
|
|
4274
|
+
message?: string;
|
|
4275
|
+
time?: V1Time;
|
|
4276
|
+
}
|
|
4277
|
+
export interface V1VolumeMount {
|
|
4278
|
+
mountPath: string;
|
|
4279
|
+
mountPropagation?: string;
|
|
4280
|
+
name: string;
|
|
4281
|
+
readOnly?: boolean;
|
|
4282
|
+
recursiveReadOnly?: string;
|
|
4283
|
+
subPath?: string;
|
|
4284
|
+
subPathExpr?: string;
|
|
4285
|
+
}
|
|
4286
|
+
export interface V1VolumeMountStatus {
|
|
4287
|
+
mountPath: string;
|
|
4288
|
+
name: string;
|
|
4289
|
+
readOnly?: boolean;
|
|
4290
|
+
recursiveReadOnly?: string;
|
|
4291
|
+
}
|
|
4292
|
+
export interface V1VolumeNodeAffinity {
|
|
4293
|
+
required?: V1NodeSelector;
|
|
4294
|
+
}
|
|
4295
|
+
export interface V1VolumeNodeResources {
|
|
4296
|
+
count?: number;
|
|
4297
|
+
}
|
|
4298
|
+
export interface V1VolumeProjection {
|
|
4299
|
+
clusterTrustBundle?: V1ClusterTrustBundleProjection;
|
|
4300
|
+
configMap?: V1ConfigMapProjection;
|
|
4301
|
+
downwardAPI?: V1DownwardAPIProjection;
|
|
4302
|
+
podCertificate?: V1PodCertificateProjection;
|
|
4303
|
+
secret?: V1SecretProjection;
|
|
4304
|
+
serviceAccountToken?: V1ServiceAccountTokenProjection;
|
|
4305
|
+
}
|
|
4306
|
+
export interface V1VolumeResourceRequirements {
|
|
4307
|
+
limits?: Record<string, Quantity>;
|
|
4308
|
+
requests?: Record<string, Quantity>;
|
|
4309
|
+
}
|
|
4310
|
+
export interface V1VsphereVirtualDiskVolumeSource {
|
|
4311
|
+
fsType?: string;
|
|
4312
|
+
storagePolicyID?: string;
|
|
4313
|
+
storagePolicyName?: string;
|
|
4314
|
+
volumePath: string;
|
|
4315
|
+
}
|
|
4316
|
+
export interface V1WatchEvent {
|
|
4317
|
+
object: RawExtension;
|
|
4318
|
+
type: string;
|
|
4319
|
+
}
|
|
4320
|
+
export interface V1WebhookConversion {
|
|
4321
|
+
clientConfig?: V1ApiextensionsWebhookClientConfig;
|
|
4322
|
+
conversionReviewVersions: string[];
|
|
4323
|
+
}
|
|
4324
|
+
export interface V1WeightedPodAffinityTerm {
|
|
4325
|
+
podAffinityTerm: V1PodAffinityTerm;
|
|
4326
|
+
weight: number;
|
|
4327
|
+
}
|
|
4328
|
+
export interface V1WindowsSecurityContextOptions {
|
|
4329
|
+
gmsaCredentialSpec?: string;
|
|
4330
|
+
gmsaCredentialSpecName?: string;
|
|
4331
|
+
hostProcess?: boolean;
|
|
4332
|
+
runAsUserName?: string;
|
|
4333
|
+
}
|
|
4334
|
+
export interface V2ContainerResourceMetricSource {
|
|
4335
|
+
container: string;
|
|
4336
|
+
name: string;
|
|
4337
|
+
target: V2MetricTarget;
|
|
4338
|
+
}
|
|
4339
|
+
export interface V2ContainerResourceMetricStatus {
|
|
4340
|
+
container: string;
|
|
4341
|
+
current: V2MetricValueStatus;
|
|
4342
|
+
name: string;
|
|
4343
|
+
}
|
|
4344
|
+
export interface V2CrossVersionObjectReference {
|
|
4345
|
+
apiVersion?: string;
|
|
4346
|
+
kind: string;
|
|
4347
|
+
name: string;
|
|
4348
|
+
}
|
|
4349
|
+
export interface V2ExternalMetricSource {
|
|
4350
|
+
metric: V2MetricIdentifier;
|
|
4351
|
+
target: V2MetricTarget;
|
|
4352
|
+
}
|
|
4353
|
+
export interface V2ExternalMetricStatus {
|
|
4354
|
+
current: V2MetricValueStatus;
|
|
4355
|
+
metric: V2MetricIdentifier;
|
|
4356
|
+
}
|
|
4357
|
+
export interface V2HorizontalPodAutoscaler {
|
|
4358
|
+
apiVersion?: string;
|
|
4359
|
+
kind?: string;
|
|
4360
|
+
metadata?: V1ObjectMeta;
|
|
4361
|
+
spec?: V2HorizontalPodAutoscalerSpec;
|
|
4362
|
+
status?: V2HorizontalPodAutoscalerStatus;
|
|
4363
|
+
}
|
|
4364
|
+
export interface V2HorizontalPodAutoscalerBehavior {
|
|
4365
|
+
scaleDown?: V2HPAScalingRules;
|
|
4366
|
+
scaleUp?: V2HPAScalingRules;
|
|
4367
|
+
}
|
|
4368
|
+
export interface V2HorizontalPodAutoscalerCondition {
|
|
4369
|
+
lastTransitionTime?: V1Time;
|
|
4370
|
+
message?: string;
|
|
4371
|
+
reason?: string;
|
|
4372
|
+
status: string;
|
|
4373
|
+
type: string;
|
|
4374
|
+
}
|
|
4375
|
+
export interface V2HorizontalPodAutoscalerList {
|
|
4376
|
+
apiVersion?: string;
|
|
4377
|
+
items: V2HorizontalPodAutoscaler[];
|
|
4378
|
+
kind?: string;
|
|
4379
|
+
metadata?: V1ListMeta;
|
|
4380
|
+
}
|
|
4381
|
+
export interface V2HorizontalPodAutoscalerSpec {
|
|
4382
|
+
behavior?: V2HorizontalPodAutoscalerBehavior;
|
|
4383
|
+
maxReplicas: number;
|
|
4384
|
+
metrics?: V2MetricSpec[];
|
|
4385
|
+
minReplicas?: number;
|
|
4386
|
+
scaleTargetRef: V2CrossVersionObjectReference;
|
|
4387
|
+
}
|
|
4388
|
+
export interface V2HorizontalPodAutoscalerStatus {
|
|
4389
|
+
conditions?: V2HorizontalPodAutoscalerCondition[];
|
|
4390
|
+
currentMetrics?: V2MetricStatus[];
|
|
4391
|
+
currentReplicas?: number;
|
|
4392
|
+
desiredReplicas: number;
|
|
4393
|
+
lastScaleTime?: V1Time;
|
|
4394
|
+
observedGeneration?: number;
|
|
4395
|
+
}
|
|
4396
|
+
export interface V2HPAScalingPolicy {
|
|
4397
|
+
periodSeconds: number;
|
|
4398
|
+
type: string;
|
|
4399
|
+
value: number;
|
|
4400
|
+
}
|
|
4401
|
+
export interface V2HPAScalingRules {
|
|
4402
|
+
policies?: V2HPAScalingPolicy[];
|
|
4403
|
+
selectPolicy?: string;
|
|
4404
|
+
stabilizationWindowSeconds?: number;
|
|
4405
|
+
tolerance?: Quantity;
|
|
4406
|
+
}
|
|
4407
|
+
export interface V2MetricIdentifier {
|
|
4408
|
+
name: string;
|
|
4409
|
+
selector?: V1LabelSelector;
|
|
4410
|
+
}
|
|
4411
|
+
export interface V2MetricSpec {
|
|
4412
|
+
containerResource?: V2ContainerResourceMetricSource;
|
|
4413
|
+
external?: V2ExternalMetricSource;
|
|
4414
|
+
object?: V2ObjectMetricSource;
|
|
4415
|
+
pods?: V2PodsMetricSource;
|
|
4416
|
+
resource?: V2ResourceMetricSource;
|
|
4417
|
+
type: string;
|
|
4418
|
+
}
|
|
4419
|
+
export interface V2MetricStatus {
|
|
4420
|
+
containerResource?: V2ContainerResourceMetricStatus;
|
|
4421
|
+
external?: V2ExternalMetricStatus;
|
|
4422
|
+
object?: V2ObjectMetricStatus;
|
|
4423
|
+
pods?: V2PodsMetricStatus;
|
|
4424
|
+
resource?: V2ResourceMetricStatus;
|
|
4425
|
+
type: string;
|
|
4426
|
+
}
|
|
4427
|
+
export interface V2MetricTarget {
|
|
4428
|
+
averageUtilization?: number;
|
|
4429
|
+
averageValue?: Quantity;
|
|
4430
|
+
type: string;
|
|
4431
|
+
value?: Quantity;
|
|
4432
|
+
}
|
|
4433
|
+
export interface V2MetricValueStatus {
|
|
4434
|
+
averageUtilization?: number;
|
|
4435
|
+
averageValue?: Quantity;
|
|
4436
|
+
value?: Quantity;
|
|
4437
|
+
}
|
|
4438
|
+
export interface V2ObjectMetricSource {
|
|
4439
|
+
describedObject: V2CrossVersionObjectReference;
|
|
4440
|
+
metric: V2MetricIdentifier;
|
|
4441
|
+
target: V2MetricTarget;
|
|
4442
|
+
}
|
|
4443
|
+
export interface V2ObjectMetricStatus {
|
|
4444
|
+
current: V2MetricValueStatus;
|
|
4445
|
+
describedObject: V2CrossVersionObjectReference;
|
|
4446
|
+
metric: V2MetricIdentifier;
|
|
4447
|
+
}
|
|
4448
|
+
export interface V2PodsMetricSource {
|
|
4449
|
+
metric: V2MetricIdentifier;
|
|
4450
|
+
target: V2MetricTarget;
|
|
4451
|
+
}
|
|
4452
|
+
export interface V2PodsMetricStatus {
|
|
4453
|
+
current: V2MetricValueStatus;
|
|
4454
|
+
metric: V2MetricIdentifier;
|
|
4455
|
+
}
|
|
4456
|
+
export interface V2ResourceMetricSource {
|
|
4457
|
+
name: string;
|
|
4458
|
+
target: V2MetricTarget;
|
|
4459
|
+
}
|
|
4460
|
+
export interface V2ResourceMetricStatus {
|
|
4461
|
+
current: V2MetricValueStatus;
|
|
4462
|
+
name: string;
|
|
4463
|
+
}
|
|
4464
|
+
//# sourceMappingURL=index.d.ts.map
|