blob: 726e9734ab01701fb11d35c9ede497605187ad93 (
plain)
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
|
---
apiVersion: v1
kind: ConfigMap
metadata:
name: sfc-controller-cfg
namespace: csit
data:
etcd.conf:
insecure-transport: true
dial-timeout: 1000000000
endpoints:
- "172.17.0.1:22379"
sfc.conf:
sfc_controller_config_version: 1
description: $$TEST_NAME$$
host_entities:
- name: vswitch
sfc_entities:
- name: vswitch-vnf1
description: vswitch to VNF1 - memif
type: 3
elements:
- container: vswitch
port_label: $$VSWITCH_IF1$$
etcd_vpp_switch_key: vswitch
type: 5
- container: vnf1
port_label: port1
etcd_vpp_switch_key: vswitch
type: 2
- name: vnf1-vswitch
description: VNF1 to vswitch - memif
type: 3
elements:
- container: vswitch
port_label: $$VSWITCH_IF2$$
etcd_vpp_switch_key: vswitch
type: 5
- container: vnf1
port_label: port2
etcd_vpp_switch_key: vswitch
type: 2
vnf.conf:
vnf_plugin_config_version: 1
description: VNF config
vnf_entities:
- name: vnf1
container: vnf1
l2xconnects:
- port_labels:
- port1
- port2
---
apiVersion: v1
kind: Pod
metadata:
name: sfc-controller
namespace: csit
spec:
containers:
- name: "sfc-controller"
image: prod_sfc_controller
imagePullPolicy: IfNotPresent
command:
- /bin/sfc-controller
- -etcdv3-config=/opt/sfc-controller/dev/etcd.conf
- -sfc-config=/opt/sfc-controller/dev/sfc.conf
- -vnf-config=/opt/sfc-controller/dev/vnf.conf
volumeMounts:
- name: controller-config
mountPath: /opt/sfc-controller/dev
volumes:
- name: controller-config
configMap:
name: sfc-controller-cfg
---
apiVersion: v1
kind: ConfigMap
metadata:
name: vswitch-agent-cfg
namespace: csit
data:
etcd.conf:
insecure-transport: true
dial-timeout: 1000000000
endpoints:
- "172.17.0.1:22379"
kafka.conf:
addrs:
- "172.17.0.1:9092"
---
apiVersion: v1
kind: Pod
metadata:
name: vswitch-vpp
namespace: csit
spec:
hostNetwork: true
containers:
- name: "vswitch"
image: prod_vpp_agent_shrink
imagePullPolicy: IfNotPresent
securityContext:
privileged: true
ports:
- containerPort: 5002
- containerPort: 9191
readinessProbe:
httpGet:
path: /readiness
port: 9191
periodSeconds: 1
livenessProbe:
httpGet:
path: /liveness
port: 9191
periodSeconds: 1
initialDelaySeconds: 15
env:
- name: MICROSERVICE_LABEL
value: vswitch
volumeMounts:
- name: vpp-config
mountPath: /etc/vpp
- name: agent-config
mountPath: /opt/vpp-agent/dev
- name: memif-sockets
mountPath: /tmp
volumes:
- name: vpp-config
configMap:
name: vswitch-vpp-cfg
- name: agent-config
configMap:
name: vswitch-agent-cfg
- name: memif-sockets
hostPath:
path: /tmp
---
apiVersion: v1
kind: ConfigMap
metadata:
name: vnf-agent-cfg
namespace: csit
data:
etcd.conf:
insecure-transport: true
dial-timeout: 1000000000
endpoints:
- "172.17.0.1:22379"
kafka.conf:
addrs:
- "172.17.0.1:9092"
---
apiVersion: v1
kind: Pod
metadata:
name: vnf-vpp
namespace: csit
spec:
containers:
- name: "vnf"
image: prod_vpp_agent_shrink
imagePullPolicy: IfNotPresent
securityContext:
privileged: true
ports:
- containerPort: 5002
- containerPort: 9191
readinessProbe:
httpGet:
path: /readiness
port: 9191
periodSeconds: 1
livenessProbe:
httpGet:
path: /liveness
port: 9191
initialDelaySeconds: 15
env:
- name: MICROSERVICE_LABEL
value: vnf1
volumeMounts:
- name: vpp-config
mountPath: /etc/vpp
- name: agent-config
mountPath: /opt/vpp-agent/dev
- name: memif-sockets
mountPath: /tmp
volumes:
- name: vpp-config
configMap:
name: vnf-vpp-cfg
- name: agent-config
configMap:
name: vnf-agent-cfg
- name: memif-sockets
hostPath:
path: /tmp
|