-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of flow aggregator build system and structure (#1558)
This is the first PR of flow aggregator implementation, which only contains the build system and main structure of it, including the yaml files, github workflow changes and command linue tools.
- Loading branch information
1 parent
6e3d8c7
commit a3f0042
Showing
20 changed files
with
675 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM golang:1.15 as flow-aggregator-build | ||
|
||
WORKDIR /antrea | ||
|
||
COPY . /antrea | ||
|
||
RUN make flow-aggregator | ||
|
||
FROM antrea/base-ubuntu:2.14.0 | ||
|
||
LABEL maintainer="Antrea <[email protected]>" | ||
LABEL description="The docker image for the flow aggregator" | ||
|
||
USER root | ||
|
||
COPY --from=flow-aggregator-build /antrea/bin/flow-aggregator /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
apiVersion: v1 | ||
data: | ||
flow-aggregator.conf: | | ||
# Provide the flow collector address as string with format <IP>:<port>[:<proto>], where proto is tcp or udp. | ||
# If no L4 transport proto is given, we consider tcp as default. | ||
flowCollectorAddr: "" | ||
# Provide flow export interval as a duration string. This determines how often the flow aggregator exports flow | ||
# records to the flow collector. | ||
# Flow export interval should be greater than or equal to 1s (one second). | ||
# Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". | ||
flowExportInterval: 60s | ||
kind: ConfigMap | ||
metadata: | ||
labels: | ||
app: flow-aggregator | ||
name: flow-aggregator-configmap-gcd5tkk2dd | ||
namespace: flow-aggregator | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: flow-aggregator | ||
name: flow-aggregator | ||
namespace: flow-aggregator | ||
spec: | ||
ports: | ||
- port: 4739 | ||
protocol: UDP | ||
targetPort: 4739 | ||
selector: | ||
app: flow-aggregator | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app: flow-aggregator | ||
name: flow-aggregator | ||
namespace: flow-aggregator | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: flow-aggregator | ||
template: | ||
metadata: | ||
labels: | ||
app: flow-aggregator | ||
spec: | ||
containers: | ||
- args: | ||
- --config | ||
- /etc/flow-aggregator/flow-aggregator.conf | ||
- --logtostderr=false | ||
- --log_dir=/var/log/flowaggregator | ||
- --alsologtostderr | ||
- --log_file_max_size=100 | ||
- --log_file_max_num=4 | ||
- --v=0 | ||
command: | ||
- flow-aggregator | ||
image: antrea/flow-aggregator | ||
imagePullPolicy: IfNotPresent | ||
name: flow-aggregator | ||
ports: | ||
- containerPort: 4739 | ||
volumeMounts: | ||
- mountPath: /etc/flow-aggregator/flow-aggregator.conf | ||
name: flow-aggregator-config | ||
readOnly: true | ||
subPath: flow-aggregator.conf | ||
volumes: | ||
- configMap: | ||
name: flow-aggregator-configmap-gcd5tkk2dd | ||
name: flow-aggregator-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Provide the flow collector address as string with format <IP>:<port>[:<proto>], where proto is tcp or udp. | ||
# If no L4 transport proto is given, we consider tcp as default. | ||
flowCollectorAddr: "" | ||
|
||
# Provide flow export interval as a duration string. This determines how often the flow aggregator exports flow | ||
# records to the flow collector. | ||
# Flow export interval should be greater than or equal to 1s (one second). | ||
# Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". | ||
flowExportInterval: 60s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: flow-aggregator | ||
namespace: flow-aggregator | ||
spec: | ||
selector: | ||
app: flow-aggregator | ||
ports: | ||
- port: 4739 | ||
protocol: UDP | ||
targetPort: 4739 | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: flow-aggregator | ||
namespace: flow-aggregator | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: flow-aggregator | ||
template: | ||
spec: | ||
containers: | ||
- args: | ||
- --config | ||
- /etc/flow-aggregator/flow-aggregator.conf | ||
- --logtostderr=false | ||
- --log_dir=/var/log/flowaggregator | ||
- --alsologtostderr | ||
- --log_file_max_size=100 | ||
- --log_file_max_num=4 | ||
- --v=0 | ||
command: | ||
- flow-aggregator | ||
name: flow-aggregator | ||
image: antrea/flow-aggregator | ||
ports: | ||
- containerPort: 4739 | ||
volumeMounts: | ||
- mountPath: /etc/flow-aggregator/flow-aggregator.conf | ||
name: flow-aggregator-config | ||
readOnly: true | ||
subPath: flow-aggregator.conf | ||
volumes: | ||
- name: flow-aggregator-config | ||
configMap: | ||
name: flow-aggregator-configmap | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
resources: | ||
- flow-aggregator.yml | ||
configMapGenerator: | ||
- files: | ||
- conf/flow-aggregator.conf | ||
name: flow-aggregator-configmap | ||
commonLabels: | ||
app: flow-aggregator | ||
namespace: flow-aggregator | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization |
11 changes: 11 additions & 0 deletions
11
build/yamls/flow-aggregator/patches/dev/imagePullPolicy.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: flow-aggregator | ||
namespace: flow-aggregator | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: flow-aggregator | ||
imagePullPolicy: IfNotPresent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# placeholder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright 2020 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 main | ||
|
||
type FlowAggregatorConfig struct { | ||
// Provide the flow collector address as string with format <IP>:<port>[:<proto>], where proto is tcp or udp. | ||
// If no L4 transport proto is given, we consider tcp as default. | ||
// Defaults to "". | ||
FlowCollectorAddr string `yaml:"flowCollectorAddr,omitempty"` | ||
// Provide flow export interval as a duration string. This determines how often the flow aggregator exports flow | ||
// records to the flow collector. | ||
// Flow export interval should be greater than or equal to 1s (one second). | ||
// Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". | ||
// Defaults to "60s". | ||
FlowExportInterval string `yaml:"flowExportInterval,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2020 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 main | ||
|
||
import ( | ||
"k8s.io/klog" | ||
|
||
aggregator "github.com/vmware-tanzu/antrea/pkg/flowaggregator" | ||
"github.com/vmware-tanzu/antrea/pkg/signals" | ||
) | ||
|
||
func run(o *Options) error { | ||
klog.Infof("Flow aggregator starting...") | ||
// Set up signal capture: the first SIGTERM / SIGINT signal is handled gracefully and will | ||
// cause the stopCh channel to be closed; if another signal is received before the program | ||
// exits, we will force exit. | ||
stopCh := signals.RegisterSignalHandlers() | ||
flowAggregator := aggregator.InitFlowAggregator(o.flowCollectorAddr, o.exportInterval) | ||
go flowAggregator.Run(stopCh) | ||
<-stopCh | ||
klog.Infof("Stopping flow aggregator") | ||
return nil | ||
} |
Oops, something went wrong.