-
Notifications
You must be signed in to change notification settings - Fork 0
/
aerakictl.sh
447 lines (417 loc) · 9.93 KB
/
aerakictl.sh
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
#!/usr/local/bin/bash
alias k=kubectl
aerakictl_command_exist()
{
if ! hash jq 2>/dev/null; then
echo 'please install jq https://stedolan.github.io/jq/download/'
return 1
fi
return 0
}
aerakictl_get_pod()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_get_pod productpage default\" , if namespace is default, the second parameter can leave unspecied."
return 1
elif [ $# -eq 1 ] || [ -z "$2" ]
then
ns="default"
else
ns=$2
fi
pod=`k get pods --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}' -n $ns|grep $1|head -n 1|head -n 1`
if [ -z "$pod" ]
then
echo "Can't find pod "$1" in namespace "$2
return 1
else
echo $pod
fi
}
aerakictl_istiod_log()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k logs $@ $pod -n istio-system
fi
}
aerakictl_istiod_log_dump()
{
aerakictl_istiod_log > istiodlog_`date +%F%H%M%S`
}
aerakictl_istiod_debug()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $# -eq 0 ]
then
echo "Please specify the resource in the input parameter, you can choose one from the following output"
k exec $pod -n istio-system -- curl http://127.0.0.1:15014/debug
else
k exec $pod -n istio-system -- curl http://127.0.0.1:15014/debug/$@
fi
}
aerakictl_istiod_config()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec -it $pod -n istio-system -- curl http://127.0.0.1:15014/debug/configz
fi
}
aerakictl_istiod_registry()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec $pod -n istio-system -- curl http://127.0.0.1:15014/debug/registryz
fi
}
aerakictl_istiod_ads()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec $pod -n istio-system -- curl http://127.0.0.1:15014/debug/adsz
fi
}
aerakictl_istiod_endpoint()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec $pod -n istio-system -- curl http://127.0.0.1:15014/debug/endpointz
fi
}
aerakictl_istiod_instances()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec $pod -n istio-system -- curl http://127.0.0.1:15014/debug/instancesz
fi
}
aerakictl_sidecar_config()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_sidecar_config productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k exec -it $pod -c istio-proxy -- curl "127.0.0.1:15000/config_dump"
else
k exec -it $pod -c istio-proxy -n $2 -- curl "127.0.0.1:15000/config_dump"
fi
fi
fi
}
aerakictl_sidecar_route()
{
if ! aerakictl_command_exist
then
return 1
fi
output=`aerakictl_sidecar_config $@`
if [[ $output =~ .*aeraki.meta_protocol_proxy.config.route.v1alpha.RouteConfiguration.* ]]
then
aerakictl_sidecar_config $@|jq '.configs[4]'
else
echo $output
fi
}
aerakictl_sidecar_enable_trace()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_sidecar_enable_trace productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k exec $pod -c istio-proxy -- curl -d"dummy" 127.0.0.1:15000/logging\?level=trace
else
k exec $pod -c istio-proxy -n $2 -- curl -d"dummy" 127.0.0.1:15000/logging\?level=trace
fi
fi
fi
}
aerakictl_sidecar_enable_debug()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_sidecar_enable_debug productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k exec $pod -c istio-proxy -- curl -d"dummy" 127.0.0.1:15000/logging\?level=debug
else
k exec $pod -c istio-proxy -n $2 -- curl -d"dummy" 127.0.0.1:15000/logging\?level=debug
fi
fi
fi
}
aerakictl_sidecar_disable_debug()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_sidecar_disable_debug productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k exec $pod -c istio-proxy -- curl -d"dummy" 127.0.0.1:15000/logging\?level=info
else
k exec $pod -c istio-proxy -n $2 -- curl -d"dummy" 127.0.0.1:15000/logging\?level=info
fi
fi
fi
}
aerakictl_sidecar_admin()
{
if [ $# -lt 3 ]
then
echo "Please specify the pod, namespace and resource in the input parameter, you can choose one from the following output"
k exec `aerakictl_get_pod $1 $2` -c istio-proxy -n $2 -- curl 127.0.0.1:15000/dummy
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec $pod -c istio-proxy -n $2 -- curl 127.0.0.1:15000/$3
fi
fi
}
aerakictl_sidecar_stats()
{
aerakictl_sidecar_admin $1 $2 /stats/prometheus
}
aerakictl_sidecar_log()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_sidecar_log productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k logs $pod -c istio-proxy
else
index=1
kubectlparameter=()
for arg in $*
do
if [ $index -gt 2 ]
then
kubectlparameter+=$arg
fi
let index+=1
done
k logs $kubectlparameter $pod -c istio-proxy -n $2
fi
fi
fi
}
aerakictl_get_container()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_get_pod productpage default\" , if namespace is default, the second parameter can leave unspecied."
return 1
elif [ $# -eq 1 ] || [ -z "$2" ]
then
container=`k get pods --template '{{range .items}}{{range .spec.containers}}{{.name}}{{"\n"}}{{end}}{{end}}' |grep $1|head -n 1`
else
container=`k get pods --template '{{range .items}}{{range .spec.containers}}{{.name}}{{"\n"}}{{end}}{{end}}' -n $2|grep $1|head -n 1`
fi
if [ -z "$container" ]
then
echo "Can't find container "$1" in namespace "$2
return 1
else
echo $container
fi
}
aerakictl_app_log()
{
setopt local_options BASH_REMATCH
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_app_log productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k logs $pod -c $1
else
index=1
kubectlparameter=()
for arg in $*
do
if [ $index -gt 2 ]
then
kubectlparameter+=$arg
fi
let index+=1
done
container=$pod
if [[ $container =~ (.*)-[0-9,a-z]+-[0-9,a-z]{5}$ ]]
then
container=${BASH_REMATCH[2]}
elif [[ $container =~ .*-([0-9,a-z]+)-[0-9]+$ ]]
then
container=${BASH_REMATCH[2]}
else
container=$1
fi
container=`aerakictl_get_container $1 $2`
k logs $kubectlparameter $pod -c $container -n $2
fi
fi
fi
}
aerakictl_gateway_config()
{
pod=`aerakictl_get_pod istio-ingressgateway istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k exec -it $pod -c istio-proxy -n istio-system -- curl "127.0.0.1:15000/config_dump?include_eds"
fi
}
aerakictl_gateway_log()
{
pod=`aerakictl_get_pod istio-ingressgateway istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k logs $pod -c istio-proxy -n istio-system
fi
}
aerakictl_mesh_operator_log()
{
if [ $# -eq 0 ]
then
echo "Please specify namespace in the parameters."
else
pod=`aerakictl_get_pod mesh-kube-operator $1`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k logs -n $@ $pod
fi
fi
}
aerakictl_dangerous_delete_istiod_pod()
{
pod=`aerakictl_get_pod istiod istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k delete pod $pod -n istio-system --force --grace-period=0
fi
}
aerakictl_dangerous_delete_aeraki_pod()
{
pod=`aerakictl_get_pod aeraki istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k delete pod $pod -n istio-system --force --grace-period=0
fi
}
aerakictl_aeraki_log()
{
pod=`aerakictl_get_pod aeraki istio-system`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
k logs $@ $pod -n istio-system
fi
}
aerakictl_dangerous_delete_pod()
{
if [ $# -eq 0 ]
then
echo "Please specify app and namespace in the parameters, like \"aerakictl_sidecar_config productpage default\" , if namespace is default, the second parameter can leave unspecied."
else
pod=`aerakictl_get_pod $1 $2`
if [ $? -ne 0 ]
then
echo $pod
return 1
else
if [ $# -eq 1 ]
then
k delete po $pod --force --grace-period=0
else
k delete po $pod -n $2 --force --grace-period=0
fi
fi
fi
}