forked from codementor/k8s-cli-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kubectl-example
executable file
·298 lines (253 loc) · 8.34 KB
/
kubectl-example
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
#!/usr/bin/env jbang
// client-java for k8s
//DEPS io.kubernetes:client-java:5.0.0
// pico for cli
//DEPS info.picocli:picocli:4.1.4
// text output table
//DEPS com.massisframework:j-text-utils:0.3.4
import dnl.utils.text.table.TextTable;
import io.kubernetes.client.ApiClient;
import io.kubernetes.client.ApiException;
import io.kubernetes.client.Configuration;
import io.kubernetes.client.ProtoClient;
import io.kubernetes.client.apis.CoreV1Api;
import io.kubernetes.client.models.*;
import io.kubernetes.client.proto.V1;
import io.kubernetes.client.util.Config;
import picocli.CommandLine;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
import static picocli.CommandLine.*;
import static picocli.CommandLine.Model.*;
@Command(
name = "example",
description = "An example kubectl plugin",
subcommands = {
PodCommand.class,
ResourcesCommand.class
},
mixinStandardHelpOptions=true
)
public class KubectlExample implements Callable<Integer> {
@Spec
CommandSpec cmd;
public static void main(String[] args) {
int exitCode = new CommandLine(new KubectlExample()).execute(args);
System.exit(exitCode);
}
@Override
public Integer call() throws Exception {
cmd.commandLine().usage(cmd.commandLine().getOut());
return 0;
}
}
@Command(
name = "pod",
description = "Programmatically accesses pods in a k8s with 'add', 'list' and 'list2'",
subcommands = {
PodAddCommand.class,
PodListCommand.class,
PodList2Command.class
}
)
class PodCommand {
}
@Command(
name = "add",
description = "Adds a pod to a k8s cluster"
)
class PodAddCommand implements Runnable {
@Parameters(index = "0")
String name;
@Option(names = {"-i", "--image"}, description = "image to use for pod")
String image = "nginx";
@Option(names = {"-n", "--namespace"}, description = "namespace to use for pod")
String namespace = "default";
@Override
public void run() {
ApiClient client;
try {
client = Config.defaultClient();
Configuration.setDefaultApiClient(client);
} catch (IOException e) {
System.out.println("Unable to get cluster configuration");
System.err.println(e);
return;
}
try {
CoreV1Api api = new CoreV1Api(client);
Map<String, String> labels = new HashMap<>();
labels.put("app", "demo");
V1Pod pod = new V1PodBuilder()
.withNewMetadata()
.withName(name)
.withLabels(labels)
.endMetadata()
.withNewSpec()
.addNewContainer()
.withName(name)
.withImage(image)
.endContainer()
.endSpec()
.build();
api.createNamespacedPod(namespace, pod, null, null, null);
} catch (ApiException e) {
System.out.println("unable to get pod list");
System.err.println(e);
return;
}
}
}
@Command(
name = "list2",
description = "lists pods in the cluster using the protoclient approach"
)
class PodList2Command implements Runnable {
@Option(names = {"-n", "--namespace"}, description = "namespace to use for getting pods")
String namespace = "default";
@Override
public void run() {
ProtoClient pc;
try {
ApiClient client = Config.defaultClient();
Configuration.setDefaultApiClient(client);
pc = new ProtoClient(client);
} catch (IOException e) {
System.out.println("Unable to get cluster configuration");
System.err.println(e);
return;
}
ProtoClient.ObjectOrStatus<V1.PodList> list;
try {
String path = String.format("/api/v1/namespaces/%s/pods", namespace);
list = pc.list(V1.PodList.newBuilder(), path);
} catch (ApiException | IOException e) {
System.out.println("unable to get pod list");
System.err.println(e);
return;
}
if (list.object.getItemsList().size() < 1) {
System.out.println("No Pods found");
} else {
printTable(list.object);
}
}
private void printTable(V1.PodList podList) {
Object[][] data = new Object[podList.getItemsList().size()][];
int i = 0;
for (V1.Pod item : podList.getItemsList()) {
ArrayList<Object> cols = new ArrayList<>();
cols.add(item.getMetadata().getName());
cols.add(item.getMetadata().getNamespace());
data[i++] = cols.toArray();
}
String[] columnNames = {"Pod Name", "namespace"};
TextTable tt = new TextTable(columnNames, data);
tt.printTable();
}
}
/**
* PodListCommand is a command for listing pods in a kubernetes cluster. This class is an example and requires
* standard kubeconfig setup to work.
*
*/
@Command(
name = "list",
description = "lists pods in the cluster using a structured approach"
)
class PodListCommand implements Runnable {
@Override
public void run() {
ApiClient client;
try {
client = Config.defaultClient();
Configuration.setDefaultApiClient(client);
} catch (IOException e) {
System.out.println("Unable to get cluster configuration");
System.err.println(e);
return;
}
V1PodList list;
try {
CoreV1Api api = new CoreV1Api(client);
list = api.listPodForAllNamespaces(null, null, null, null, null, null, null, null, null);
} catch (ApiException e) {
System.out.println("unable to get pod list");
System.err.println(e);
return;
}
if (list.getItems().size() < 1) {
System.out.println("No Pods found");
} else {
printTable(list);
}
}
/**
* Prints the table of pods discovered
*
* @param list PodList of pods
*/
private static void printTable(V1PodList list) {
Object[][] data = new Object[list.getItems().size()][];
int i = 0;
for (V1Pod item : list.getItems()) {
ArrayList<Object> cols = new ArrayList<>();
cols.add(item.getMetadata().getName());
cols.add(item.getMetadata().getNamespace());
data[i++] = cols.toArray();
}
String[] columnNames = {"Pod Name", "namespace"};
TextTable tt = new TextTable(columnNames, data);
tt.printTable();
}
}
@Command(
name = "resources",
description = "lists resources in the k8s cluster"
)
class ResourcesCommand implements Runnable {
@Override
public void run() {
ApiClient client;
try {
client = Config.defaultClient();
Configuration.setDefaultApiClient(client);
} catch (IOException e) {
System.out.println("Unable to get cluster configuration");
System.err.println(e);
return;
}
V1APIResourceList list;
try {
CoreV1Api api = new CoreV1Api(client);
list = api.getAPIResources();
} catch (ApiException e) {
System.out.println("unable to get resource list");
System.err.println(e);
return;
}
if (list.getResources().size() < 1) {
System.out.println("No resources found");
} else {
printTable(list.getResources());
}
}
private void printTable(List<V1APIResource> resources) {
Object[][] data = new Object[resources.size()][];
int i = 0;
for (V1APIResource item : resources) {
ArrayList<Object> cols = new ArrayList<>();
cols.add(item.getName());
cols.add(item.isNamespaced());
cols.add(item.getKind());
data[i++] = cols.toArray();
}
String[] columnNames = {"Resource", "Namespaced", "Kind"};
TextTable tt = new TextTable(columnNames, data);
tt.printTable();
}
}