forked from fabric8io/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KubernetesClient.java
552 lines (490 loc) · 20.6 KB
/
KubernetesClient.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/**
* Copyright (C) 2015 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fabric8.kubernetes.client;
import io.fabric8.kubernetes.api.model.APIService;
import io.fabric8.kubernetes.api.model.APIServiceList;
import io.fabric8.kubernetes.api.model.Binding;
import io.fabric8.kubernetes.api.model.ComponentStatus;
import io.fabric8.kubernetes.api.model.ComponentStatusList;
import io.fabric8.kubernetes.api.model.ConfigMap;
import io.fabric8.kubernetes.api.model.ConfigMapList;
import io.fabric8.kubernetes.api.model.Endpoints;
import io.fabric8.kubernetes.api.model.EndpointsList;
import io.fabric8.kubernetes.api.model.GenericKubernetesResource;
import io.fabric8.kubernetes.api.model.GenericKubernetesResourceList;
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.api.model.KubernetesResourceList;
import io.fabric8.kubernetes.api.model.LimitRange;
import io.fabric8.kubernetes.api.model.LimitRangeList;
import io.fabric8.kubernetes.api.model.Namespace;
import io.fabric8.kubernetes.api.model.NamespaceList;
import io.fabric8.kubernetes.api.model.Node;
import io.fabric8.kubernetes.api.model.NodeList;
import io.fabric8.kubernetes.api.model.PersistentVolume;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaim;
import io.fabric8.kubernetes.api.model.PersistentVolumeClaimList;
import io.fabric8.kubernetes.api.model.PersistentVolumeList;
import io.fabric8.kubernetes.api.model.Pod;
import io.fabric8.kubernetes.api.model.PodList;
import io.fabric8.kubernetes.api.model.ReplicationController;
import io.fabric8.kubernetes.api.model.ReplicationControllerList;
import io.fabric8.kubernetes.api.model.ResourceQuota;
import io.fabric8.kubernetes.api.model.ResourceQuotaList;
import io.fabric8.kubernetes.api.model.Secret;
import io.fabric8.kubernetes.api.model.SecretList;
import io.fabric8.kubernetes.api.model.Service;
import io.fabric8.kubernetes.api.model.ServiceAccount;
import io.fabric8.kubernetes.api.model.ServiceAccountList;
import io.fabric8.kubernetes.api.model.ServiceList;
import io.fabric8.kubernetes.api.model.authentication.TokenReview;
import io.fabric8.kubernetes.api.model.certificates.v1beta1.CertificateSigningRequest;
import io.fabric8.kubernetes.api.model.certificates.v1beta1.CertificateSigningRequestList;
import io.fabric8.kubernetes.api.model.coordination.v1.Lease;
import io.fabric8.kubernetes.api.model.coordination.v1.LeaseList;
import io.fabric8.kubernetes.api.model.node.v1beta1.RuntimeClass;
import io.fabric8.kubernetes.api.model.node.v1beta1.RuntimeClassList;
import io.fabric8.kubernetes.client.dsl.ApiextensionsAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.AppsAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.AuthenticationAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.AuthorizationAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.AutoscalingAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.BatchAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.CertificatesAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.DiscoveryAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.DynamicResourceAllocationAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.EventingAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.ExtensionsAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.FlowControlAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.InOutCreateable;
import io.fabric8.kubernetes.client.dsl.MetricAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.MixedOperation;
import io.fabric8.kubernetes.client.dsl.NamespaceListVisitFromServerGetDeleteRecreateWaitApplicable;
import io.fabric8.kubernetes.client.dsl.NamespaceableResource;
import io.fabric8.kubernetes.client.dsl.NetworkAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.NonNamespaceOperation;
import io.fabric8.kubernetes.client.dsl.PodResource;
import io.fabric8.kubernetes.client.dsl.PolicyAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.RbacAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.Resource;
import io.fabric8.kubernetes.client.dsl.RollableScalableResource;
import io.fabric8.kubernetes.client.dsl.SchedulingAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.ServiceAccountResource;
import io.fabric8.kubernetes.client.dsl.ServiceResource;
import io.fabric8.kubernetes.client.dsl.StorageAPIGroupDSL;
import io.fabric8.kubernetes.client.dsl.V1APIGroupDSL;
import io.fabric8.kubernetes.client.dsl.base.ResourceDefinitionContext;
import io.fabric8.kubernetes.client.extended.leaderelection.LeaderElectorBuilder;
import io.fabric8.kubernetes.client.extended.run.RunOperations;
import io.fabric8.kubernetes.client.informers.SharedInformerFactory;
import io.fabric8.kubernetes.client.utils.KubernetesSerialization;
import java.io.InputStream;
import java.util.Collection;
/**
* Main interface for Kubernetes client library.
*/
public interface KubernetesClient extends Client {
/**
* API entrypoint for apiextensions resources. Currently support both
* v1 and v1beta1
*
* @return ApiextensionsAPIGroupDSL which routes to v1 or v1beta1
*/
ApiextensionsAPIGroupDSL apiextensions();
/**
* API entrypoint for using CertificateSigningRequest(certificates.k8s.io/v1beta1)
*
* @deprecated Use `client.certificates().v1beta1().certificateSigningRequest` instead
* @return {@link NonNamespaceOperation} for CertificateSigningRequest class
*/
@Deprecated
NonNamespaceOperation<CertificateSigningRequest, CertificateSigningRequestList, Resource<CertificateSigningRequest>> certificateSigningRequests();
/**
* API entrypoint for certificates.k8s.io APIGroup
*
* @return {@link CertificatesAPIGroupDSL} for Certificate API resources
*/
CertificatesAPIGroupDSL certificates();
/**
* Typed API for managing resources. Any properly annotated POJO can be utilized as a resource.
*
* <p>
* Note: your resource POJO (T in this context) must implement
* {@link io.fabric8.kubernetes.api.model.Namespaced} if it is a namespace-scoped resource.
* </p>
*
* @param resourceType Class for resource
* @param <T> T type represents resource type. If it's a namespaced resource, it must implement
* {@link io.fabric8.kubernetes.api.model.Namespaced}
* @return returns a MixedOperation object with which you can do basic resource operations. If the class is a known type the
* dsl operation logic will be used.
*/
default <T extends HasMetadata> MixedOperation<T, KubernetesResourceList<T>, Resource<T>> resources(Class<T> resourceType) {
return resources(resourceType, null);
}
/**
* Semi-Typed API for managing {@link GenericKubernetesResource}s which can represent any resource.
*
* @param context ResourceDefinitionContext describes the core metadata
* @return returns a MixedOperation object with which you can do basic operations
* @see #genericKubernetesResources(String, String) if you don't want to supply a complete {@link ResourceDefinitionContext}
*/
MixedOperation<GenericKubernetesResource, GenericKubernetesResourceList, Resource<GenericKubernetesResource>> genericKubernetesResources(
ResourceDefinitionContext context);
/**
* Semi-typed API for managing resources.
*
* Will perform a look-up if needed for additional metadata about the resource.
*
* @param apiVersion the api/version
* @param kind the resource kind
* @return returns a MixedOperation object with which you can do basic resource operations.
*/
MixedOperation<GenericKubernetesResource, GenericKubernetesResourceList, Resource<GenericKubernetesResource>> genericKubernetesResources(
String apiVersion, String kind);
/**
* Discovery API entrypoint for APIGroup discovery.k8s.io
*
* @return {@link DiscoveryAPIGroupDSL} with which you can access Discovery API resource objects
*/
DiscoveryAPIGroupDSL discovery();
/**
* API entrypoint for dynamic resource allocation <code>resource.k8s.io</code>
*
* @return {@link DynamicResourceAllocationAPIGroupDSL} with which you can access various types provided by this API.
*/
DynamicResourceAllocationAPIGroupDSL dynamicResourceAllocation();
/**
* Event API entrypoint for APIGroup events.k8s.io
*
* <b>Note:</b> This should not be confused with v1.Event
*
* @return {@link EventingAPIGroupDSL} with which you can access Events API resources objects.
*/
EventingAPIGroupDSL events();
/**
* Extensions API entrypoint for APIGroup extensions/v1beta1
*
* @return ExtensionsAPIGroupDSL with which you can access entrypoints for extension objects
*/
ExtensionsAPIGroupDSL extensions();
/**
* FlowControl APIServer API for apigroup flowcontrol.apiserver.k8s.io
*
* @return {@link FlowControlAPIGroupDSL} with which you can access entry points for FlowControl objects
*/
FlowControlAPIGroupDSL flowControl();
/**
* Get Kubernetes API server version
*
* @return VersionInfo object containing versioning information
* @deprecated use {@link #getKubernetesVersion()} instead
*/
@Deprecated
VersionInfo getVersion();
/**
* Get Kubernetes API server version
*
* @return VersionInfo object containing versioning information
*/
VersionInfo getKubernetesVersion();
/**
* API entrypoint for kubernetes resources with APIGroup admissionregistration.k8s.io/v1beta1
*
* @return AdmissionRegistrationAPIGroupDSL which offers entrypoints to specific resources in this API group
*/
AdmissionRegistrationAPIGroupDSL admissionRegistration();
/**
* API entrypoint for kubernetes resources with APIGroup apps/v1
*
* @return AppsAPIGroupDSL which offers entrypoints to specific resources in this API group
*/
AppsAPIGroupDSL apps();
/**
* API entrypoint for kubernetes resources with APIGroup autoscaling/v2beta1
*
* @return AutoScalingAPIGroupDSL which offers entrypoints to specific resources in this API group
*/
AutoscalingAPIGroupDSL autoscaling();
/**
* API entrypoint for kubernetes resources with APIGroup networking/v1
*
* @return NetworkAPIGroupDSL which offers entrypoints to specific resources in this APIGroup
*/
NetworkAPIGroupDSL network();
/**
* API entrypoint for kubernetes resources with APIGroup storage/v1
*
* @return StorageAPIGroupDSL which offers entrypoints to specific resources in this APIGroup
*/
StorageAPIGroupDSL storage();
/**
* API entrypoint for kubernetes resources with APIGroup batch/v1beta1
*
* @return BatchAPIGroupDSL which offers entrypoint to specific resources in this APIGroup
*/
BatchAPIGroupDSL batch();
/**
* API entrypoint for kubernetes metrics
*
* @return MetricAPIGroupDSL which offers for fetching metrics
*/
MetricAPIGroupDSL top();
/**
* API entrypoint for kubernetes resources with APIGroup policy/v1beta1
*
* @return PolicyAPIGroupDSL which offers entrypoint to specific resources in this APIGroup
*/
PolicyAPIGroupDSL policy();
/**
* API entrypoint for kubernetes resources with APIGroup rbac/v1
*
* @return RbacAPIGroupDSL which offers entrypoint to specific resources in this APIGroup
*/
RbacAPIGroupDSL rbac();
/**
* API entrypoint for kubernetes resources with APIGroup scheduling/v1beta1
*
* @return SchedulingAPIGroupDSL which offers entrypoint to specific resources in this APIGroup
*/
SchedulingAPIGroupDSL scheduling();
/**
* API entrypoint for dealing with core/v1/ComponentStatus
*
* @return MixedOperation object with which you can do basic operations for ComponentStatus
*/
NonNamespaceOperation<ComponentStatus, ComponentStatusList, Resource<ComponentStatus>> componentstatuses();
/**
* Load Kubernetes resource object(s) from the provided InputStream.
*
* @param is the input stream containing JSON/YAML content
* @return an operation instance to work on the list of Kubernetes Resource objects
*/
NamespaceListVisitFromServerGetDeleteRecreateWaitApplicable<HasMetadata> load(InputStream is);
/**
* Load a Kubernetes list object
*
* @param s kubernetes list as string
* @return an operation instance to work on the deserialized KubernetesList objects
*/
NamespaceListVisitFromServerGetDeleteRecreateWaitApplicable<HasMetadata> resourceList(String s);
/**
* KubernetesResourceList operations
*
* @param list KubernetesResourceList object containing kubernetes resource items
* @return operations object for KubernetesResourceList
*/
NamespaceListVisitFromServerGetDeleteRecreateWaitApplicable<HasMetadata> resourceList(KubernetesResourceList list);
/**
* KubernetesResourceList operations
*
* @param items array of HasMetadata values
* @return operations object for Kubernetes list
*/
NamespaceListVisitFromServerGetDeleteRecreateWaitApplicable<HasMetadata> resourceList(HasMetadata... items);
/**
* KubernetesResourceList operations
*
* @param items a collection containing HasMetadata values
* @return operations object for Kubernetes list
*/
NamespaceListVisitFromServerGetDeleteRecreateWaitApplicable<HasMetadata> resourceList(
Collection<? extends HasMetadata> items);
/**
* KubernetesResource operations. You can pass any Kubernetes resource as a HasMetadata object and do
* all operations
*
* @param is Kubernetes resource object
* @param <T> type of Kubernetes resource
* @return operations object for Kubernetes resource
*/
<T extends HasMetadata> NamespaceableResource<T> resource(T is);
/**
* KubernetesResource operations. You can pass any Kubernetes resource as string object and do
* all operations
*
* @param s a Kubernetes resource object as string
* @return operations object for Kubernetes resource
*/
NamespaceableResource<HasMetadata> resource(String s);
/**
* KubernetesResource operations. You can pass any Kubernetes resource as an InputStream object and perform
* all operations
*
* @param is the InputStream containing a serialized Kubernetes resource.
* @return operations object for Kubernetes resource.
*/
NamespaceableResource<HasMetadata> resource(InputStream is);
/**
* Operations for Binding resource in APIgroup core/v1
*
* @return MixedOperation object for doing operations for Binding
*/
MixedOperation<Binding, KubernetesResourceList<Binding>, Resource<Binding>> bindings();
/**
* API entrypoint for Endpoints with APIGroup core/v1
*
* @return MixedOperation object for doing operations for Endpoints
*/
MixedOperation<Endpoints, EndpointsList, Resource<Endpoints>> endpoints();
/**
* API entrypoint for namespace related operations in Kubernetes. Namespace (core/v1)
*
* @return NonNamespaceOperation object for Namespace related operations
*/
NonNamespaceOperation<Namespace, NamespaceList, Resource<Namespace>> namespaces();
/**
* API entrypoint for node related operations in Kubernetes. Node (core/v1)
*
* @return NonNamespaceOperation object for Node related operations
*/
NonNamespaceOperation<Node, NodeList, Resource<Node>> nodes();
/**
* API entrypoint for PersistentVolume related operations. PersistentVolume (core/v1)
*
* @return NonNamespaceOperation object for PersistentVolume related operations.
*/
NonNamespaceOperation<PersistentVolume, PersistentVolumeList, Resource<PersistentVolume>> persistentVolumes();
/**
* API entrypoint for PersistentVolumeClaim related operations. PersistentVolumeClaim (core/v1)
*
* @return MixedOperation object for PersistentVolumeClaim related operations.
*/
MixedOperation<PersistentVolumeClaim, PersistentVolumeClaimList, Resource<PersistentVolumeClaim>> persistentVolumeClaims();
/**
* API entrypoint for Pod related operations. Pod (core/v1)
*
* @return MixedOperation object for Pod related operations
*/
MixedOperation<Pod, PodList, PodResource> pods();
/**
* API entrypoint for ReplicationController related operations. ReplicationController (core/v1)
*
* @return MixedOperation object for ReplicationController related operations.
*/
MixedOperation<ReplicationController, ReplicationControllerList, RollableScalableResource<ReplicationController>> replicationControllers();
/**
* API entrypoint for ResourceQuota related operations. ResourceQuota (core/v1)
*
* @return MixedOperation object for ResourceQuota related operations.
*/
MixedOperation<ResourceQuota, ResourceQuotaList, Resource<ResourceQuota>> resourceQuotas();
/**
* API entrypoint for Secret related operations. Secret (core/v1)
*
* @return MixedOperation object for Secret related operations.
*/
MixedOperation<Secret, SecretList, Resource<Secret>> secrets();
/**
* API entrypoint for Service related operations. Service (core/v1)
*
* @return MixedOperation object for Service related operations.
*/
MixedOperation<Service, ServiceList, ServiceResource<Service>> services();
/**
* API entrypoint for ServiceAccount related operations. ServiceAccount (core/v1)
*
* @return MixedOperation object for ServiceAccount related operations.
*/
MixedOperation<ServiceAccount, ServiceAccountList, ServiceAccountResource> serviceAccounts();
/**
* API entrypoint for APIService related operations. APIService (apiregistration.k8s.io/v1)
*
* @return MixedOperation object for APIService related operations
*/
NonNamespaceOperation<APIService, APIServiceList, Resource<APIService>> apiServices();
/**
* API entrypoint for ConfigMap related operations. ConfigMap (core/v1)
*
* @return MixedOperation object for ConfigMap related operations.
*/
MixedOperation<ConfigMap, ConfigMapList, Resource<ConfigMap>> configMaps();
/**
* API entrypoint for LimitRange related operations. LimitRange (core/v1)
*
* @return MixedOperation object for LimitRange related operations.
*/
MixedOperation<LimitRange, LimitRangeList, Resource<LimitRange>> limitRanges();
/**
* Authorization operations. (authorization.k8s.io/v1 and authorization.k8s.io/v1beta1)
*
* @return AuthorizationAPIGroupDSL object for dealing with Authorization objects
*/
AuthorizationAPIGroupDSL authorization();
/**
* Authentication operations (authentication.k8s.io)
*
* @return {@link AuthenticationAPIGroupDSL} object for dealing with Authentication objects
*/
AuthenticationAPIGroupDSL authentication();
/**
* API for creating authentication.k8s.io/v1 TokenReviews
*
* @return InOutCreateable instance for creating TokenReview object
*/
InOutCreateable<TokenReview, TokenReview> tokenReviews();
/**
* Get an instance of Kubernetes Client informer factory. It allows you to construct and
* cache informers for API types. With it you can subscribe to all the events related to
* your Kubernetes type. It's like watch but a bit organized.
* <p>
* Each call to this method returns a new factory.
*
* @return SharedInformerFactory object
*/
SharedInformerFactory informers();
/**
* API entrypoint for <code>LeaderElector</code> implementation for leader election.
*
* @return LeaderElectorBuilder to build LeaderElector instances
*/
LeaderElectorBuilder leaderElector();
/**
* API entrypoint for {@link Lease} related operations. Lease (coordination.k8s.io/v1)
*
* @return MixedOperation object for Lease related operations.
*/
MixedOperation<Lease, LeaseList, Resource<Lease>> leases();
/**
* API entrypoint for Core Kubernetes Resources (core/v1). Right now other core
* resources have their own DSL entrypoints. But in future, all core/v1 resources
* would be added here.
*
* @return V1APIGroupDSL DSL object for core v1 resources
*/
V1APIGroupDSL v1();
/**
* Run a Pod (core/v1)
*
* @return returns {@link RunOperations} that allows you to run a pod based on few parameters(e.g. name, image etc)
*/
RunOperations run();
/**
* API entrypoint for RuntimeClass (node.k8s.io/v1beta1)
*
* @return {@link NonNamespaceOperation} for RuntimeClass
*/
NonNamespaceOperation<RuntimeClass, RuntimeClassList, Resource<RuntimeClass>> runtimeClasses();
/**
* Visit all resources with the given {@link ApiVisitor}.
*
* @param visitor
*/
void visitResources(ApiVisitor visitor);
/**
* @return the {@link KubernetesSerialization} used by this client
*/
KubernetesSerialization getKubernetesSerialization();
}