-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrunNetPerfTest.pl
537 lines (418 loc) · 21.8 KB
/
runNetPerfTest.pl
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
#!/usr/bin/perl -w
###################################################
### This script runs several kubectl commands ###
### in order to measure the network performance ###
### beetween K8s nodes, pods and services ###
### in various scenarios. ###
### ###
### Requires JSON::Parse, so install it by: ###
### sudo perl -MCPAN -e 'install JSON::Parse' ###
### ###
### If make was not OK (e.g. on cloud image), ###
### than you also need to install make by ###
### sudo apt install build-essentials ###
### ###
### Written by Megyo on 15. May 2018 ###
### Last modified on 21. Jan 2019 ###
###################################################
use strict;
use JSON::Parse ':all';
#maximum number of measurements in different types
my $numberOfLocalhostMeasurements = 2;
my $numberOfInterNodeMeasurements = 4;
my $iperfTime = 2;
my $netperfRequestPacketSize = 32;
my $netperfResponsePacketSize = 1024;
#hash to store every data on Nodes
my %nodes = ();
#hash to store every data on NetPerf Pods
my %pods = ();
#hash to store every data on Netperf Service
my %services = ();
#simple IP address regular expression
my $IPregexp = '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
#reading ARGV for --nobaseline flag
my $nobaseline = 0;
if ((defined($ARGV[0])) and ($ARGV[0] =~ /--nobaseline/)) {
$nobaseline = 1;
}
print STDERR "No Baseline flag is: $nobaseline\n";
#reading Node, POD and Service information from Kubernetes
&getKubernetesInfo();
#run Iperf on ceratain nodes (PODs in hostnetworking mode) to localhost
my @randArray = randomKeysFromHash($numberOfLocalhostMeasurements,%nodes);
foreach my $node (@randArray) {
last if ($nobaseline);
my $podName = $nodes{$node}->{'HostNetPerf'};
my $targetIP = $nodes{$node}->{'IPaddress'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "Localhost Iperf throughput test on Node $node: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_RR test on Node $node (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_CRR test on Node $node (HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "Localhost Fortio using HTTP 1.0 on Node $node: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "Localhost Fortio using HTTP 1.1 on Node $node: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "Localhost Fortio using GRPC on Node $node: $fortioGRPC\n";
}
#run Iperf on ceratain PODs as localhost
@randArray = randomKeysFromHash($numberOfLocalhostMeasurements,%pods);
foreach my $podName (@randArray) {
last if ($nobaseline);
my $targetIP = $pods{$podName}->{'IPaddress'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "Localhost Iperf throughput test on POD $podName: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_RR test on POD $podName (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_CRR test on POD $podName (HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "Localhost Fortio using HTTP 1.0 on POD $podName: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "Localhost Fortio using HTTP 1.1 on POD $podName: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "Localhost Fortio using GRPC on POD $podName: $fortioGRPC\n";
}
#run Iperf between ceratain PODs and their host (use the same random POD array to the previous case)
foreach my $podName (@randArray) {
last if ($nobaseline);
my $targetIP = $pods{$podName}->{'NodeIP'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "Localhost Iperf throughput test between POD $podName and it's Node: $pods{$podName}->{NodeName}: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_RR test between POD $podName and it's Node: $pods{$podName}->{NodeName} (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_CRR test between POD $podName and it's Node: $pods{$podName}->{NodeName}(HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "Localhost Fortio using HTTP 1.0 between POD $podName and it's Node: $pods{$podName}->{NodeName}: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "Localhost Fortio using HTTP 1.1 between POD $podName and it's Node: $pods{$podName}->{NodeName}: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "Localhost Fortio using GRPC between POD $podName and it's Node: $pods{$podName}->{NodeName}: $fortioGRPC\n";
}
#run Iperf between PODs located on the same host
my %randHash = randomPodPairsOnSameNode($numberOfLocalhostMeasurements);
foreach my $podName (keys %randHash) {
my $targetIP = $pods{$randHash{$podName}}->{'IPaddress'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "Localhost Iperf throughput test between POD $podName and POD $randHash{$podName}: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_RR test between POD $podName and POD $randHash{$podName} (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "Localhost NetPerf TCP_CRR test between POD $podName and POD $randHash{$podName}(HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "Localhost Fortio using HTTP 1.0 between POD $podName and POD $randHash{$podName}: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "Localhost Fortio using HTTP 1.1 between POD $podName and POD $randHash{$podName}: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "Localhost Fortio using GRPC between POD $podName and POD $randHash{$podName}: $fortioGRPC\n";
}
#if only have one node, than exit
exit if (scalar(keys %nodes) < 2);
#run Iperf between Nodes to see maximum internode capacity
my %randNodePairs = randomNodePairs($numberOfInterNodeMeasurements);
foreach my $node (keys %randNodePairs) {
last if ($nobaseline);
my $podName = $nodes{$node}->{'HostNetPerf'};
my $targetIP = $nodes{$randNodePairs{$node}}->{'IPaddress'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "InterNode Iperf throughput test between Node $node and Node $randNodePairs{$node}: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_RR test between Node $node and Node $randNodePairs{$node} (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_CRR test between Node $node and Node $randNodePairs{$node}(HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "InterNode Fortio using HTTP 1.0 between Node $node and Node $randNodePairs{$node}: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "InterNode Fortio using HTTP 1.1 between Node $node and Node $randNodePairs{$node}: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "InterNode Fortio using GRPC between Node $node and Node $randNodePairs{$node}: $fortioGRPC\n";
}
#run Iperf between PODs running on differnet nodes to see performance degradation
%randHash = randomPodsOnDiffernetNodes(%randNodePairs);
foreach my $podName (keys %randHash) {
my $targetIP = $pods{$randHash{$podName}}->{'IPaddress'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "InterNode Iperf throughput test between POD $podName and POD $randHash{$podName}: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_RR test between POD $podName and POD $randHash{$podName} (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_CRR test between POD $podName and POD $randHash{$podName}(HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "InterNode Fortio using HTTP 1.0 between POD $podName and POD $randHash{$podName}: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "InterNode Fortio using HTTP 1.1 between POD $podName and POD $randHash{$podName}: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "InterNode Fortio using GRPC between POD $podName and POD $randHash{$podName}: $fortioGRPC\n";
}
#run Iperf between a POD and another node (not the host of the POD)
foreach my $podName (keys %randHash) {
last if ($nobaseline);
my $targetIP = $pods{$randHash{$podName}}->{'NodeIP'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "InterNode Iperf throughput test between POD $podName and Node $pods{$randHash{$podName}}->{NodeName}: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_RR test between POD $podName and Node $pods{$randHash{$podName}}->{NodeName} (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_CRR test between POD $podName and Node $pods{$randHash{$podName}}->{NodeName}(HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "InterNode Fortio using HTTP 1.0 between POD $podName and Node $pods{$randHash{$podName}}->{NodeName}: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "InterNode Fortio using HTTP 1.1 between POD $podName and Node $pods{$randHash{$podName}}->{NodeName}: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "InterNode Fortio using GRPC between POD $podName and Node $pods{$randHash{$podName}}->{NodeName}: $fortioGRPC\n";
}
#run Iperf a node and a POD located on a different node to see difference between asymetric routes
foreach my $pod (keys %randHash) {
last if ($nobaseline);
my $podName = $nodes{$pods{$randHash{$pod}}->{'NodeName'}}->{'HostNetPerf'};
my $targetIP = $pods{$pod}->{'IPaddress'};
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "InterNode Iperf throughput test between Node $pods{$randHash{$pod}}->{NodeName} and POD $pod: $iperf\n";
my $netperfRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_RR', 'P50_LATENCY,P90_LATENCY,P99_LATENCY,THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_RR test between Node $pods{$randHash{$pod}}->{NodeName} and POD $pod (lantency 50,90 and 99 percentiles in us and DB like transaction rate): $netperfRR\n";
my $netperfCRR = &runNetperf($podName, $targetIP, $iperfTime, 'TCP_CRR', 'THROUGHPUT,THROUGHPUT_UNITS');
print "InterNode NetPerf TCP_CRR test between Node $pods{$randHash{$pod}}->{NodeName} and POD $pod(HTTP API like transaction rate): $netperfCRR\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "InterNode Fortio using HTTP 1.0 between Node $pods{$randHash{$pod}}->{NodeName} and POD $pod: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "InterNode Fortio using HTTP 1.1 between Node $pods{$randHash{$pod}}->{NodeName} and POD $pod: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "InterNode Fortio using GRPC between Node $pods{$randHash{$pod}}->{NodeName} and POD $pod: $fortioGRPC\n";
}
#run Iperf between PODs and Service IP to see kube-proxy performance
#we dont't run NetPerf since its using dinamically allocated port numebers for data exchange, which is not supported in Kubernetes Services abstraction
my $serviceIP = $services{'netperf-server'}->{'clusterIP'};
foreach my $podName (keys %randHash) {
my $targetIP = $serviceIP;
my $iperf = &runIperf($podName, $targetIP, $iperfTime);
print "ClusterIP based Iperf throughput test between POD $podName and netperf-server service with IP $serviceIP: $iperf\n";
my $fortioHTTP10 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1 -http1.0');
print "ClusterIP based Fortio using HTTP 1.0 between POD $podName and netperf-server service with IP $serviceIP: $fortioHTTP10\n";
my $fortioHTTP11 = &runFortio($podName, $targetIP, $iperfTime, '-qps 0 -c 1');
print "ClusterIP based Fortio using HTTP 1.1 between POD $podName and netperf-server service with IP $serviceIP: $fortioHTTP11\n";
my $fortioGRPC = &runFortio($podName, $targetIP,, $iperfTime, '-qps 0 -c 1 -grpc -ping');
print "ClusterIP based Fortio using GRPC between POD $podName and netperf-server service with IP $serviceIP: $fortioGRPC\n";
}
sub runIperf {
my ($pod, $serverIP, $time) = @_;
print STDERR "running command: kubectl exec -it $pod -- iperf -c $serverIP -i 1 -t $time \n";
open(IPERF, "kubectl exec -it $pod -- iperf -c $serverIP -i 1 -t $time | ");
my $lastLine = '';
while (<IPERF>) {
print STDERR $_;
$lastLine = $_;
}
close(IPERF);
chomp($lastLine);
$lastLine =~ s/.*?(\d+\.\d+ .bits\/sec).*/$1/;
return $lastLine;
}
sub runNetperf {
my ($pod, $serverIP, $time, $type, $format) = @_;
my $lastLine = '';
print STDERR "running command: kubectl exec -it $pod -- netperf -H $serverIP -l $time -P 1 -t $type -- -r $netperfRequestPacketSize,$netperfResponsePacketSize -o $format \n";
open(NETPERF, "kubectl exec -it $pod -- netperf -H $serverIP -l $time -P 1 -t $type -- -r $netperfRequestPacketSize,$netperfResponsePacketSize -o $format | ");
while (<NETPERF>) {
print STDERR $_;
$lastLine = $_;
}
chomp($lastLine);
close(NETPERF);
return $lastLine;
}
sub runFortio {
my ($pod, $serverIP, $time, $flags) = @_;
my $lastLine = '';
my $outputstring = '';
my $port = '';
$port = ':8080' unless ($flags =~ /grpc/);
print STDERR "running command: kubectl exec -it $pod -- fortio load $flags -t ${time}s $serverIP$port \n";
open(FORTIO, "kubectl exec -it $pod -- fortio load $flags -t ${time}s $serverIP$port | ");
while (my $line = <FORTIO>) {
print STDERR $line;
$line =~ s/\n|\r//g;
$line =~ s/[^0-9a-zA-z %.,]//g;
$line =~ s/\t/ /g;
if ($line =~ /target 50% (.*)/) {
$outputstring .= $1 . ', ';
}
elsif ($line =~ /target 90% (.*)/) {
$outputstring .= $1 . ', ';
}
elsif ($line =~ /target 99% (.*)/) {
$outputstring .= $1 . ', ';
}
$lastLine = $line;
}
$lastLine =~ s/^.*,//;
$outputstring .= $lastLine;
close(FORTIO);
return $outputstring;
}
sub randomKeysFromHash {
my $number = shift;
my %hash = @_;
my @randomList = ();
while (($number > 0) and (scalar(keys %hash) > 0)) {
my $randKey = (keys %hash)[rand keys %hash];
push @randomList, $randKey;
delete $hash{$randKey};
$number--;
}
return @randomList;
}
sub randomPodPairsOnSameNode {
my $number = shift;
my %hash = ();
foreach my $node (keys %nodes) {
my @tmp = @{$nodes{$node}->{'pods'}};
while (($number > 0) and (scalar(@tmp) > 1)) {
$hash{$tmp[0]} = $tmp[1];
#print "\t\t$tmp->[0] ---> $tmp->[1]\n";
shift @tmp;
$number--;
}
}
return %hash;
}
sub randomNodePairs {
my $number = shift;
my %hash = ();
my @tmp = keys %nodes;
return %hash if (scalar(@tmp) < 2);
if (scalar(@tmp) == 2) {
$hash{$tmp[0]} = $tmp[1];
$hash{$tmp[1]} = $tmp[0];
return %hash;
}
if (scalar(@tmp) == 3) {
$hash{$tmp[0]} = $tmp[1];
$hash{$tmp[1]} = $tmp[0];
$hash{$tmp[1]} = $tmp[2];
$hash{$tmp[0]} = $tmp[2];
return %hash;
}
if (scalar(@tmp) == 4) {
$hash{$tmp[0]} = $tmp[1];
$hash{$tmp[0]} = $tmp[2];
$hash{$tmp[0]} = $tmp[3];
$hash{$tmp[1]} = $tmp[2];
$hash{$tmp[2]} = $tmp[3];
return %hash;
}
while (($number > 0) and (scalar(@tmp) > 1)) {
$hash{$tmp[0]} = $tmp[1];
shift @tmp;
$number--;
}
return %hash;
}
sub randomPodsOnDiffernetNodes {
my %nodePairs = @_;
my %hash = ();
foreach my $nodeA (keys %nodePairs) {
my @tmpA = @{$nodes{$nodeA}->{'pods'}};
my @tmpB = @{$nodes{$nodePairs{$nodeA}}->{'pods'}};
my $podA = $tmpA[rand @tmpA];
my $podB = $tmpB[rand @tmpB];
$hash{$podA} = $podB;
}
return %hash;
}
sub getKubernetesInfo {
#get name of all nodes in the cluster
my $allNodes = `kubectl get nodes -o name`;
foreach (split("\n", $allNodes)) {
#this will be the temporary variable to store all relevant Node data
my %tmp = ();
#add array for future POD information
my @podsOnThisNode = ();
$tmp{'pods'} = \@podsOnThisNode;
$_ =~ s/node\///;
print STDERR "Node: $_\n";
#get all the information on this particular Nodes
my $res = `kubectl describe node $_`;
foreach my $line (split("\n", $res)) {
#get IPaddress of the Node
if ($line =~ /InternalIP:.*?($IPregexp)/) {
$tmp{'IPaddress'} = $1;
}
#get PodCIDR of the Node
if ($line =~ /PodCIDR:.*?($IPregexp\/\d+)/) {
$tmp{'PodCIDR'} = $1;
}
}
$nodes{$_} = \%tmp;
}
#get name of all pods in the cluster
my $allPods = `kubectl get pods -o=custom-columns=NAME:.metadata.name,NAMESPACE:.metadata.namespace | grep netperf`;
foreach (split("\n", $allPods)) {
#next if ($_ =~ /NAMESPACE/); #just skip the first header line
#this will be the temporary variable to store all relevant POD data
my %tmp = ();
my ($name, $namespace) = split(/ +/, $_);
print STDERR "Pod: $name in $namespace \n";
$tmp{'namespace'} = $namespace;
#get all the information on this particular Nodes
my $res = `kubectl describe pod $name --namespace=$namespace`;
foreach my $line (split("\n", $res)) {
#get IPaddress of the POD
if ($line =~ /IP:.*?($IPregexp)/) {
$tmp{'IPaddress'} = $1;
}
#get the Node that the POD is running on
if ($line =~ /Node: +(.*?)\/($IPregexp)/) {
$tmp{'NodeName'} = $1;
$tmp{'NodeIP'} = $2;
}
}
#if this POD runs in host mode, we add it to the node
if ($tmp{'IPaddress'} eq $tmp{'NodeIP'}) {
$nodes{$tmp{'NodeName'}}->{'HostNetPerf'} = $name;
}
#adding the same POD to the Node's list and to the POD list
else {
push @{$nodes{$tmp{'NodeName'}}->{'pods'}}, $name;
$pods{$name} = \%tmp;
}
}
#get all info on NetPerf service
my $allServices = `kubectl get services --all-namespaces -o wide | grep netperf`;
foreach (split("\n", $allServices)) {
next if ($_ =~ /NAMESPACE/); #just skip the first header line
#this will be the temporary variable to store all relevant POD data
my %tmp = ();
my @podBackends = ();
my ($namespace, $name, $type, $clusterIP, $externalIP, $port, $age, $selector) = split(/ +/, $_);
print STDERR "service: $name in $namespace IP=$clusterIP $externalIP $selector \n";
$tmp{'namespace'} = $namespace;
$tmp{'type'} = $type;
$tmp{'clusterIP'} = $clusterIP;
$tmp{'externalIP'} = $externalIP;
$tmp{'selector'} = $selector;
#get all the POD backends for this service
my $res = `kubectl get pods -l $selector --all-namespaces -o name`;
foreach my $line (split("\n", $res)) {
$line =~ s/pods\///;
push @podBackends, $line;
}
$tmp{'podBackends'} = \@podBackends;
$services{$name} = \%tmp;
}
#in order to get all the ports for the services we do a query in JSON
my $json = `kubectl get services --all-namespaces -o json`;
my $hash = parse_json ($json);
#print ref $hash, "\n";
foreach my $svc (@{$hash->{'items'}}) {
#print $svc->{'metadata'}->{'name'}, ' ', $svc->{'spec'}->{'ports'}, "\n";
next unless (defined($services{$svc->{'metadata'}->{'name'}}));
$services{$svc->{'metadata'}->{'name'}}->{'ports'} = $svc->{'spec'}->{'ports'};
}
print STDERR join(' ',%nodes),"\n";
print STDERR join(' ',%pods),"\n";
print STDERR join(' ',%services),"\n";
}