forked from netobserv/goflow2-kube-enricher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoflow-kube.yaml
83 lines (83 loc) · 1.47 KB
/
goflow-kube.yaml
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
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: goflow
name: goflow
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: goflow
template:
metadata:
labels:
app: goflow
spec:
containers:
- command:
- /bin/sh
- -c
# - /goflow2 -loglevel "info" | /kube-enricher -loglevel "info" -sourceformat "json"
- /goflow2 -transport.file.sep= -format=pb -format.protobuf.fixedlen=true -loglevel "info" | /kube-enricher -loglevel "info" -sourceformat "pb"
image: quay.io/netobserv/goflow2-kube:dev
imagePullPolicy: IfNotPresent
name: goflow
serviceAccountName: goflow
---
apiVersion: v1
kind: Service
metadata:
name: goflow
namespace: default
labels:
app: goflow
spec:
ports:
- port: 2055
protocol: UDP
selector:
app: goflow
---
apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app: goflow
name: goflow
namespace: default
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
app: goflow
name: goflow
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: goflow
subjects:
- kind: ServiceAccount
name: goflow
namespace: default
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
labels:
app: goflow
name: goflow
rules:
- apiGroups:
- ""
- "apps"
resources:
- pods
- replicasets
- services
verbs:
- list
- get
- watch