-
Notifications
You must be signed in to change notification settings - Fork 370
/
antctl.go
818 lines (813 loc) · 28.5 KB
/
antctl.go
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
// Copyright 2019 Antrea Authors
//
// 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 antctl
import (
"reflect"
agentapis "antrea.io/antrea/pkg/agent/apis"
fallbackversion "antrea.io/antrea/pkg/antctl/fallback/version"
checkcluster "antrea.io/antrea/pkg/antctl/raw/check/cluster"
checkinstallation "antrea.io/antrea/pkg/antctl/raw/check/installation"
"antrea.io/antrea/pkg/antctl/raw/featuregates"
"antrea.io/antrea/pkg/antctl/raw/multicluster"
"antrea.io/antrea/pkg/antctl/raw/proxy"
"antrea.io/antrea/pkg/antctl/raw/set"
"antrea.io/antrea/pkg/antctl/raw/supportbundle"
"antrea.io/antrea/pkg/antctl/raw/traceflow"
"antrea.io/antrea/pkg/antctl/raw/upgrade/apistorage"
"antrea.io/antrea/pkg/antctl/transform/addressgroup"
"antrea.io/antrea/pkg/antctl/transform/appliedtogroup"
"antrea.io/antrea/pkg/antctl/transform/controllerinfo"
"antrea.io/antrea/pkg/antctl/transform/networkpolicy"
"antrea.io/antrea/pkg/antctl/transform/ovstracing"
"antrea.io/antrea/pkg/antctl/transform/version"
cpv1beta "antrea.io/antrea/pkg/apis/controlplane/v1beta2"
crdv1b1 "antrea.io/antrea/pkg/apis/crd/v1beta1"
systemv1beta1 "antrea.io/antrea/pkg/apis/system/v1beta1"
controllerapis "antrea.io/antrea/pkg/apiserver/apis"
"antrea.io/antrea/pkg/client/clientset/versioned/scheme"
aggregatorapis "antrea.io/antrea/pkg/flowaggregator/apis"
)
// CommandList defines all commands that could be used in the antctl for agents,
// controller or flow-aggregator. The unit test "TestCommandListValidation"
// ensures it to be valid.
var CommandList = &commandList{
definitions: []commandDefinition{
{
use: "version",
short: "Print version information",
long: "Print version information of antctl and ${component}",
commandGroup: flat,
controllerEndpoint: &endpoint{
resourceEndpoint: &resourceEndpoint{
resourceName: crdv1b1.AntreaControllerInfoResourceName,
groupVersionResource: &systemv1beta1.ControllerInfoVersionResource,
},
addonTransform: version.ControllerTransform,
// print the antctl client version even if request to Controller fails
requestErrorFallback: fallbackversion.RequestErrorFallback,
},
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/version",
},
addonTransform: version.AgentTransform,
// print the antctl client version even if request to Agent fails
requestErrorFallback: fallbackversion.RequestErrorFallback,
},
flowAggregatorEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/version",
},
addonTransform: version.FlowAggregatorTransform,
// print the antctl client version even if request to Flow Aggregator fails
requestErrorFallback: fallbackversion.RequestErrorFallback,
},
transformedResponse: reflect.TypeOf(version.Response{}),
},
{
use: "podmulticaststats",
short: "Show multicast statistics",
long: "Show multicast traffic statistics of Pods",
example: ` Show multicast traffic statistics of all local Pods on the Node
$ antctl get podmulticaststats
Show multicast traffic statistics of a given Pod
$ antctl get podmulticaststats pod -n namespace`,
commandGroup: get,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/podmulticaststats",
outputType: multiple,
params: []flagInfo{
{
name: "name",
usage: "Retrieve Pod Multicast Statistics by name. If present, Namespace must be provided.",
arg: true,
},
{
name: "namespace",
usage: "Get Pod Multicast Statistics from specific Namespace.",
shorthand: "n",
},
},
},
},
transformedResponse: reflect.TypeOf(agentapis.MulticastResponse{}),
},
{
use: "log-level",
short: "Show or set log verbosity level",
long: "Show or set the log verbosity level of ${component}",
example: ` Show the current log verbosity level
$ antctl log-level
Set the log verbosity level to 2
$ antctl log-level 2`,
commandGroup: flat,
controllerEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/loglevel",
params: []flagInfo{
{
name: "level",
usage: "The integer log verbosity level to set",
arg: true,
},
},
outputType: single,
},
},
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/loglevel",
params: []flagInfo{
{
name: "level",
usage: "The integer log verbosity level to set",
arg: true,
},
},
outputType: single,
},
},
flowAggregatorEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/loglevel",
params: []flagInfo{
{
name: "level",
usage: "The integer log verbosity level to set",
arg: true,
},
},
outputType: single,
},
},
transformedResponse: reflect.TypeOf(0),
},
{
use: "networkpolicy",
aliases: []string{"networkpolicies", "netpol"},
short: "Print control plane NetworkPolicies",
long: "Print control plane NetworkPolicies in ${component}. 'namespace' is required if 'pod' is provided.",
example: ` Get a specific control plane NetworkPolicy
$ antctl get networkpolicy 6001549b-ba63-4752-8267-30f52b4332db
Get the list of all control plane NetworkPolicies
$ antctl get networkpolicy
Get the list of all control plane NetworkPolicies, sorted by the order in which the policies are evaluated.
$ antctl get networkpolicy --sort-by=effectivePriority
Get the list of all control plane NetworkPolicies, sorted using the provided field specification.
The list will be sorted by name if no value is provided.
Any valid json path can be passed as an argument to the sort-by flag. E.g.: '.sourceRef.name'.
$ antctl get networkpolicy --sort-by=''
Get the control plane NetworkPolicy with a specific source (supported by agent only)
$ antctl get networkpolicy -S allow-http -n ns1
Get the list of control plane NetworkPolicies whose source NetworkPolicies are in a Namespace (supported by agent only)
$ antctl get networkpolicy -n ns1
Get the list of control plane NetworkPolicies with a specific source Type (supported by agent only)
$ antctl get networkpolicy -T acnp
Get the list of control plane NetworkPolicies applied to a Pod (supported by agent only)
$ antctl get networkpolicy -p ns1/pod1`,
commandGroup: get,
controllerEndpoint: &endpoint{
resourceEndpoint: &resourceEndpoint{
groupVersionResource: &cpv1beta.NetworkPolicyVersionResource,
supportSorting: true,
},
addonTransform: networkpolicy.Transform,
},
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/networkpolicies",
params: append([]flagInfo{
{
name: "name",
usage: "Get NetworkPolicy by name.",
arg: true,
},
{
name: "source",
usage: "Get NetworkPolicies for which the source has the provided name. The source of a control plane NetworkPolicy is the original policy resource (K8s NetworkPolicy or Antrea-native Policy) from which the control plane NetworkPolicy was derived.",
shorthand: "S",
},
{
name: "namespace",
usage: "Get Networkpolicies from specific Namespace.",
shorthand: "n",
},
{
name: "pod",
usage: "Get NetworkPolicies applied to the Pod. Pod format is podNamespace/podName.",
shorthand: "p",
},
{
name: "type",
usage: "Get NetworkPolicies with specific type. Type refers to the type of its source NetworkPolicy: K8sNP, ACNP, ANNP, BANP or ANP",
shorthand: "T",
supportedValues: []string{"K8sNP", "ACNP", "ANNP", "BANP", "ANP"},
},
}, getSortByFlag()),
outputType: multiple,
},
addonTransform: networkpolicy.Transform,
},
transformedResponse: reflect.TypeOf(networkpolicy.Response{}),
},
{
use: "appliedtogroup",
aliases: []string{"appliedtogroups", "atg"},
short: "Print appliedto groups",
long: "Print appliedto groups in ${component}",
example: ` Get the list of all AppliedToGroups
$ antctl get appliedtogroup
Get the list of all control plane AppliedToGroups, sorted using the provided field specification.
The list will be sorted by name if no value is provided.
Any valid json path can be passed as an argument to the sort-by flag. E.g.: '.metadata.name'.
$ antctl get appliedtogroup --sort-by=''`,
commandGroup: get,
controllerEndpoint: &endpoint{
resourceEndpoint: &resourceEndpoint{
groupVersionResource: &cpv1beta.AppliedToGroupVersionResource,
supportSorting: true,
},
addonTransform: appliedtogroup.Transform,
},
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/appliedtogroups",
params: append([]flagInfo{
{
usage: "Retrieve resource by name",
name: "name",
arg: true,
},
}, getSortByFlag()),
},
addonTransform: appliedtogroup.Transform,
},
transformedResponse: reflect.TypeOf(appliedtogroup.Response{}),
},
{
use: "addressgroup",
aliases: []string{"addressgroups", "ag"},
short: "Print address groups",
long: "Print address groups in ${component}",
example: ` Get the list of all AddressGroups
$ antctl get addressgroup
Get the list of all control plane AddressGroups, sorted using the provided field specification.
The list will be sorted by name if no value is provided.
Any valid json path can be passed as an argument to the sort-by flag. E.g.: '.metadata.name'.
$ antctl get addressgroup --sort-by=''`,
commandGroup: get,
controllerEndpoint: &endpoint{
resourceEndpoint: &resourceEndpoint{
groupVersionResource: &cpv1beta.AddressGroupVersionResource,
supportSorting: true,
},
addonTransform: addressgroup.Transform,
},
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/addressgroups",
params: append([]flagInfo{
{
usage: "Retrieve resource by name",
name: "name",
arg: true,
},
}, getSortByFlag()),
},
addonTransform: addressgroup.Transform,
},
transformedResponse: reflect.TypeOf(addressgroup.Response{}),
},
{
use: "controllerinfo",
aliases: []string{"controllerinfos", "ci"},
short: "Print Antrea controller's basic information",
long: "Print Antrea controller's basic information including version, deployment, NetworkPolicy controller, ControllerConditions, etc.",
controllerEndpoint: &endpoint{
resourceEndpoint: &resourceEndpoint{
resourceName: crdv1b1.AntreaControllerInfoResourceName,
groupVersionResource: &systemv1beta1.ControllerInfoVersionResource,
},
addonTransform: controllerinfo.Transform,
},
commandGroup: get,
transformedResponse: reflect.TypeOf(controllerinfo.Response{}),
},
{
use: "agentinfo",
aliases: []string{"agentinfos", "ai"},
short: "Print agent's basic information",
long: "Print agent's basic information including version, deployment, Node subnet, OVS info, AgentConditions, etc.",
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/agentinfo",
outputType: single,
},
},
commandGroup: get,
transformedResponse: reflect.TypeOf(agentapis.AntreaAgentInfoResponse{}),
},
{
use: "podinterface",
aliases: []string{"podinterfaces", "pi"},
short: "Print Pod's network interface information",
long: "Print information about the network interface(s) created by the Antrea agent for the specified Pod.",
example: ` Get a pod-interface
$ antctl get podinterface pod1 -n ns1
Get the list of podinterfaces in a Namespace
$ antctl get podinterface -n ns1
Get the list of podinterfaces whose names match in all Namespaces
$ antctl get podinterface pod1
Get the list of podinterfaces in all Namespaces
$ antctl get podinterface`,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/podinterfaces",
params: []flagInfo{
{
name: "name",
usage: "Retrieve Pod interface by name. If present, Namespace must be provided.",
arg: true,
},
{
name: "namespace",
usage: "Get Pod interfaces from specific Namespace",
shorthand: "n",
},
},
outputType: multiple,
},
},
commandGroup: get,
transformedResponse: reflect.TypeOf(agentapis.PodInterfaceResponse{}),
},
{
use: "ovsflows",
aliases: []string{"of"},
short: "Dump OVS flows",
long: "Dump all the OVS flows or the flows installed for the specified entity.",
example: ` Dump all OVS flows
$ antctl get ovsflows
Dump OVS table names only
$ antctl get ovsflows --table-names-only
Dump OVS flows of a local Pod
$ antctl get ovsflows -p pod1 -n ns1
Dump OVS flows of a Service
$ antctl get ovsflows -S svc1 -n ns1
Dump OVS flows of a NetworkPolicy
$ antctl get ovsflows -N np1 -n ns1 --type K8sNP
Dump OVS flows of a flow Table
$ antctl get ovsflows -T IngressRule
Dump OVS groups
$ antctl get ovsflows -G 10,20
Dump all OVS groups
$ antctl get ovsflows -G all`,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/ovsflows",
params: []flagInfo{
{
name: "namespace",
usage: "Namespace of the entity",
shorthand: "n",
},
{
name: "pod",
usage: "Name of a local Pod. If present, Namespace must be provided.",
shorthand: "p",
},
{
name: "service",
usage: "Name of a Service. If present, Namespace must be provided.",
shorthand: "S",
},
{
name: "networkpolicy",
usage: "NetworkPolicy name. Namespace must be provided for non-cluster-scoped policy types if a type is specified.",
shorthand: "N",
},
{
name: "type",
usage: "NetworkPolicy type. Valid types are K8sNP, ACNP, ANNP, BANP or ANP.",
supportedValues: []string{"K8sNP", "ACNP", "ANNP", "BANP", "ANP"},
},
{
name: "table",
usage: "Comma separated Antrea OVS flow table names or numbers",
shorthand: "T",
},
{
name: "table-names-only",
usage: "Print all Antrea OVS flow table names only, and nothing else",
isBool: true,
},
{
name: "groups",
usage: "Comma separated OVS group IDs. Use 'all' to dump all groups",
shorthand: "G",
},
},
outputType: multiple,
},
},
commandGroup: get,
transformedResponse: reflect.TypeOf(agentapis.OVSFlowResponse{}),
},
{
use: "trace-packet",
short: "OVS packet tracing",
long: "Trace the OVS flows the specified packet traverses, leveraging OVS 'ofproto/trace'. Check ovs-vswitchd(8) manpage for more information about 'ofproto/trace'.",
example: ` Trace an IP packet between two Pods
$ antctl trace-packet -S ns1/pod1 -D ns2/pod2
Trace a TCP packet from a local Pod to a Service
$ antctl trace-packet -S ns1/pod1 -D ns2/svc2 -f tcp,tcp_dst=80
Trace a UDP packet from a Pod to an IP address
$ antctl trace-packet -S ns1/pod1 -D 10.1.2.3 -f udp,udp_dst=1234
Trace an IP packet from a Pod to gateway port
$ antctl trace-packet -S ns1/pod1 -D antrea-gw0
Trace a UDP packet from an IP to a Pod
$ antctl trace-packet -D ns1/pod1 -S 10.1.2.3 -f udp,udp_src=1234
Trace an IP packet from OVS port using a specified source IP
$ antctl trace-packet -p port1 -S 10.1.2.3 -D ns1/pod1
Trace an ARP packet from a local Pod
$ antctl trace-packet -p ns1/pod1 -f arp`,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/ovstracing",
params: []flagInfo{
{
name: "port",
usage: "OVS port to input the tracing packet. Can be an OVS port name, or a local Pod (specified by <Namespace>/<name>). If not specified, the input port will be automatically figured out based on the 'source', and the gateway port will be used if `source` is not specified either. If specified, the 'in_port' field should not be added in the 'flow' argument.",
shorthand: "p",
},
{
name: "source",
usage: "Source of the packet. Can be an OVS port name, or a (local or remote) Pod (specified by <Namespace>/<name>), or an IP address. If specified, the source's IP address will be used as the tracing packet's source IP address, and the 'nw_src'/'ipv6_src' field should not be added in the 'flow' argument.",
shorthand: "S",
},
{
name: "destination",
usage: "Destination of the packet. Can be an OVS port name, or a (local or remote) Pod or a Service (specified by <Namespace>/<name>). If there are both a Pod and a Service matching the destination name in a Namespace, the Pod will be set as the destination. It can also be an IP address. If specified, the destination's IP address (the ClusterIP for a Service) will be used as the tacing packet's destination IP address, and the 'nw_dst' field should not be added in the 'flow' argument.",
shorthand: "D",
},
{
name: "flow",
usage: "Specify the flow (packet headers) of the tracing packet. Check the flow syntax descriptions in ovs-ofctl(8) manpage.",
shorthand: "f",
},
{
name: "addressFamily",
usage: "Specify the address family fo the packet. Can be 4 (IPv4) or 6 (IPv6). If not specified, the addressFamily will be automatically figured out based on the 'flow'. If no IP address or address family is given in the 'flow', IPv4 is used by default.",
shorthand: "F",
},
},
outputType: single,
},
addonTransform: ovstracing.Transform,
},
commandGroup: flat,
transformedResponse: reflect.TypeOf(""),
},
{ // TODO: implement as a "rawCommand" (see supportbundle) so that the command can be run out-of-cluster
use: "endpoint",
aliases: []string{"endpoints"},
short: "Filter network policies relevant to an endpoint.",
long: "Filter network policies relevant to an endpoint into three categories: network policies which apply to the endpoint and policies which select the endpoint in an ingress and/or egress rule.",
example: ` Query network policies given Pod and Namespace
$ antctl query endpoint -p pod1 -n ns1
`,
commandGroup: query,
controllerEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/endpoint",
params: []flagInfo{
{
name: "namespace",
usage: "Namespace of the endpoint (defaults to 'default')",
shorthand: "n",
},
{
name: "pod",
usage: "Name of a Pod endpoint",
shorthand: "p",
},
},
outputType: single,
},
},
transformedResponse: reflect.TypeOf(controllerapis.EndpointQueryResponse{}),
},
{
use: "networkpolicyevaluation",
aliases: []string{"networkpoliciesevaluation", "networkpolicyeval", "networkpolicieseval", "netpoleval"},
short: "Analyze effective NetworkPolicy rules.",
long: "Analyze network policies in the cluster and return the rule expected to be effective on the source and destination endpoints provided.",
example: ` Query effective NetworkPolicy rule between two Pods
$ antctl query networkpolicyevaluation -S ns1/pod1 -D ns2/pod2
`,
commandGroup: query,
controllerEndpoint: &endpoint{
resourceEndpoint: &resourceEndpoint{
groupVersionResource: &cpv1beta.NetworkPolicyEvaluationVersionResource,
params: []flagInfo{
{
name: "source",
usage: "Source endpoint, specified by <Namespace>/<name>.",
shorthand: "S",
},
{
name: "destination",
usage: "Destination endpoint, specified by <Namespace>/<name>.",
shorthand: "D",
},
},
parameterTransform: networkpolicy.NewNetworkPolicyEvaluation,
restMethod: restPost,
},
addonTransform: networkpolicy.EvaluationTransform,
},
transformedResponse: reflect.TypeOf(networkpolicy.EvaluationResponse{}),
},
{
use: "flowrecords",
short: "Print the matching flow records in the flow aggregator",
long: "Print the matching flow records in the flow aggregator. It supports the 5-tuple flow key or a subset of the 5-tuple as a filter.",
example: ` Get the list of flow records with a complete filter and output in json format
$ antctl get flowrecords --srcip 10.0.0.1 --dstip 10.0.0.2 --proto 6 --srcport 1234 --dstport 5678 -o json
Get the list of flow records with a partial filter, e.g. source address and source port
$ antctl get flowrecords --srcip 10.0.0.1 --srcport 1234
Get the list of all flow records
$ antctl get flowrecords`,
commandGroup: get,
flowAggregatorEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/flowrecords",
params: []flagInfo{
{
name: "srcip",
usage: "Get flow records with the source IP address.",
},
{
name: "dstip",
usage: "Get flow records with the destination IP address.",
},
{
name: "proto",
usage: "Get flow records with the protocol identifier.",
},
{
name: "srcport",
usage: "Get flow records with the source port.",
},
{
name: "dstport",
usage: "Get flow records with the destination port.",
},
},
outputType: multiple,
},
},
transformedResponse: reflect.TypeOf(aggregatorapis.FlowRecordsResponse{}),
},
{
use: "recordmetrics",
short: "Print record metrics related to flow aggregator",
long: "Print record metrics related to flow aggregator. It includes number of records received, number of records exported, number of flows stored and number of exporters connected to the flow aggregator.",
commandGroup: get,
flowAggregatorEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/recordmetrics",
outputType: single,
},
},
transformedResponse: reflect.TypeOf(aggregatorapis.RecordMetricsResponse{}),
},
{
use: "serviceexternalip",
short: "Print Service external IP status",
long: "Print Service external IP status. It includes the external IP, external IP pool and the assigned Node for Services with type LoadBalancer managed by Antrea",
commandGroup: get,
aliases: []string{"seip", "serviceexternalips"},
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/serviceexternalip",
params: []flagInfo{
{
name: "name",
usage: "Name of the Service; if present, Namespace must be provided as well.",
arg: true,
},
{
name: "namespace",
usage: "Only get the external IP status for Services in the provided Namespace.",
shorthand: "n",
},
},
outputType: multiple,
},
},
transformedResponse: reflect.TypeOf(agentapis.ServiceExternalIPInfo{}),
},
{
use: "memberlist",
aliases: []string{"ml"},
short: "Print state of memberlist cluster",
long: "Print state of memberlist cluster of Antrea agent",
commandGroup: get,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/memberlist",
outputType: multiple,
},
},
transformedResponse: reflect.TypeOf(agentapis.MemberlistResponse{}),
},
{
use: "bgppolicy",
short: "Print effective bgppolicy information",
long: "Print effective bgppolicy information including name, local ASN, router ID and listen port",
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/bgppolicy",
outputType: single,
},
},
commandGroup: get,
transformedResponse: reflect.TypeOf(agentapis.BGPPolicyResponse{}),
},
{
use: "bgppeers",
aliases: []string{"bgppeer"},
short: "Print the current status of bgp peers of effective bgppolicy",
long: "Print the current status of bgp peers of effective bgppolicy which includes peer IP address with port, asn and state",
example: ` Get the list of all bgp peers with their current status
$ antctl get bgppeers
Get the list of IPv4 bgp peers with their current status
$ antctl get bgppeers --ipv4-only
Get the list of IPv6 bgp peers with their current status
$ antctl get bgppeers --ipv6-only
`,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/bgppeers",
params: []flagInfo{
{
name: "ipv4-only",
usage: "Get IPv4 bgp peers only",
isBool: true,
},
{
name: "ipv6-only",
usage: "Get IPv6 bgp peers only",
isBool: true,
},
},
outputType: multiple,
},
},
commandGroup: get,
transformedResponse: reflect.TypeOf(agentapis.BGPPeerResponse{}),
},
{
use: "bgproutes",
aliases: []string{"bgproute"},
short: "Print the advertised bgp routes.",
long: "Print the advertised bgp routes.",
example: ` Get the list of all advertised bgp routes
$ antctl get bgproutes
Get the list of advertised IPv4 bgp routes
$ antctl get bgproutes --ipv4-only
Get the list of advertised IPv6 bgp routes
$ antctl get bgproutes --ipv6-only
`,
agentEndpoint: &endpoint{
nonResourceEndpoint: &nonResourceEndpoint{
path: "/bgproutes",
params: []flagInfo{
{
name: "ipv4-only",
usage: "Get advertised IPv4 bgp routes only",
isBool: true,
},
{
name: "ipv6-only",
usage: "Get advertised IPv6 bgp routes only",
isBool: true,
},
},
outputType: multiple,
},
},
commandGroup: get,
transformedResponse: reflect.TypeOf(agentapis.BGPRouteResponse{}),
},
},
rawCommands: []rawCommand{
{
cobraCommand: checkinstallation.Command(),
supportAgent: false,
supportController: false,
commandGroup: check,
},
{
cobraCommand: checkcluster.Command(),
supportAgent: false,
supportController: false,
commandGroup: check,
},
{
cobraCommand: supportbundle.Command,
supportAgent: true,
supportController: true,
},
{
cobraCommand: traceflow.Command,
supportAgent: true,
supportController: true,
},
{
cobraCommand: proxy.Command,
supportAgent: false,
supportController: true,
},
{
cobraCommand: featuregates.Command,
supportAgent: true,
supportController: true,
commandGroup: get,
},
{
cobraCommand: multicluster.GetCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.CreateCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.DeployCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.JoinCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.LeaveCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.InitCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.DestroyCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: multicluster.DeleteCmd,
supportAgent: false,
supportController: false,
commandGroup: mc,
},
{
cobraCommand: set.SetCmd,
supportAgent: false,
supportController: false,
supportFlowAggregator: true,
},
{
cobraCommand: apistorage.NewCommand(),
supportAgent: false,
supportController: false,
commandGroup: upgrade,
},
},
codec: scheme.Codecs,
}