-
Notifications
You must be signed in to change notification settings - Fork 114
/
contiv-vpp.yaml
992 lines (946 loc) · 28.5 KB
/
contiv-vpp.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
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
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
---
# Source: contiv-vpp/templates/vpp.yaml
# Contiv-VPP deployment YAML file. This deploys Contiv VPP networking on a Kuberntes cluster.
# The deployment consists of the following components:
# - contiv-etcd - deployed on k8s master
# - contiv-vswitch - deployed on each k8s node
# - contiv-ksr - deployed on k8s master
###########################################################
# Configuration
###########################################################
# This config map contains contiv-agent configuration. The most important part is the ipamConfig,
# which may be updated in case the default IPAM settings do not match your needs.
# nodeConfig may be used in case your nodes have more than 1 VPP interface. In that case, one
# of them needs to be marked as the main inter-node interface, and the rest of them can be
# configured with any IP addresses (the IPs cannot conflict with the main IPAM config).
apiVersion: v1
kind: ConfigMap
metadata:
name: contiv-agent-cfg
namespace: kube-system
data:
contiv.conf: |-
nodeToNodeTransport: vxlan
useSRv6ForServices: false
useSRv6ForServiceFunctionChaining: false
useDX6ForSrv6NodetoNodeTransport: false
useTAPInterfaces: true
tapInterfaceVersion: 2
tapv2RxRingSize: 256
tapv2TxRingSize: 256
enableGSO: true
tcpChecksumOffloadDisabled: true
STNVersion: 2
natExternalTraffic: true
mtuSize: 1450
scanIPNeighbors: true
ipNeighborScanInterval: 1
ipNeighborStaleThreshold: 4
enablePacketTrace: false
routeServiceCIDRToVPP: false
crdNodeConfigurationDisabled: true
ipamConfig:
nodeInterconnectDHCP: false
nodeInterconnectCIDR: 192.168.16.0/24
podSubnetCIDR: 10.1.0.0/16
podSubnetOneNodePrefixLen: 24
vppHostSubnetCIDR: 172.30.0.0/16
vppHostSubnetOneNodePrefixLen: 24
vxlanCIDR: 192.168.30.0/24
srv6:
servicePolicyBSIDSubnetCIDR: 8fff::/16
servicePodLocalSIDSubnetCIDR: 9300::/16
serviceHostLocalSIDSubnetCIDR: 9300::/16
serviceNodeLocalSIDSubnetCIDR: 9000::/16
nodeToNodePodLocalSIDSubnetCIDR: 9501::/16
nodeToNodeHostLocalSIDSubnetCIDR: 9500::/16
nodeToNodePodPolicySIDSubnetCIDR: 8501::/16
nodeToNodeHostPolicySIDSubnetCIDR: 8500::/16
sfcPolicyBSIDSubnetCIDR: 8eee::/16
sfcServiceFunctionSIDSubnetCIDR: 9600::/16
sfcEndLocalSIDSubnetCIDR: 9310::/16
sfcIDLengthUsedInSidForServiceFunction: 16
controller.conf: |
enableRetry: true
delayRetry: 1000000000
maxRetryAttempts: 3
enableExpBackoffRetry: true
delayLocalResync: 5000000000
startupResyncDeadline: 30000000000
enablePeriodicHealing: false
periodicHealingInterval: 30000000000
delayAfterErrorHealing: 5000000000
remoteDBProbingInterval: 3000000000
recordEventHistory: true
eventHistoryAgeLimit: 60
permanentlyRecordedInitPeriod: 10
service.conf: |
cleanupIdleNATSessions: true
tcpNATSessionTimeout: 180
otherNATSessionTimeout: 5
serviceLocalEndpointWeight: 1
disableNATVirtualReassembly: false
---
apiVersion: v1
kind: ConfigMap
metadata:
name: vpp-agent-cfg
namespace: kube-system
data:
govpp.conf: |
health-check-probe-interval: 3000000000
health-check-reply-timeout: 500000000
health-check-threshold: 3
reply-timeout: 3000000000
logs.conf: |
default-level: debug
loggers:
- name: statscollector
level: info
- name: vpp.if-state
level: info
- name: linux.arp-conf
level: info
- name: vpp-rest
level: info
# GRPC server used to accept CNI Add/Del Pod requests
grpc.conf: |
network: unix
endpoint: /var/run/contiv/cni.sock
force-socket-removal: true
permission: 700
# GRCP server used to accept additional network configuration
grpc2.conf: |
endpoint: "0.0.0.0:9111"
http.conf: |
endpoint: "0.0.0.0:9999"
bolt.conf: |
db-path: /var/bolt/bolt.db
file-mode: 432
lock-timeout: 0
telemetry.conf: |
polling-interval: 30000000000
disabled: true
linux-ifplugin.conf: |
dump-go-routines-count: 5
linux-l3plugin.conf: |
dump-go-routines-count: 5
kvscheduler.conf: |
record-transaction-history: true
transaction-history-age-limit: 60
permanently-recorded-init-period: 10
---
kind: ConfigMap
apiVersion: v1
metadata:
name: contiv-cni-cfg
namespace: kube-system
data:
# The CNI network configuration to install on each node. The special
# values in this config will be automatically populated.
10-contiv-vpp.conflist: |-
{
"name": "k8s-pod-network",
"cniVersion": "0.3.1",
"plugins": [
{
"type": "contiv-cni",
"grpcServer": "/var/run/contiv/cni.sock",
"logFile": "/var/run/contiv/cni.log"
},
{
"type": "portmap",
"capabilities": {
"portMappings": true
},
"externalSetMarkChain": "KUBE-MARK-MASQ"
}
]
}
---
###########################################################
#
# !!! DO NOT EDIT THINGS BELOW THIS LINE !!!
#
###########################################################
###########################################################
# Components and other resources
###########################################################
# This installs the contiv-etcd (ETCD server to be used by Contiv) on the master node in a Kubernetes cluster.
# In odrer to dump the content of ETCD, you can use the kubectl exec command similar to this:
# kubectl exec contiv-etcd-cxqhr -n kube-system etcdctl -- get --endpoints=[127.0.0.1:12379] --prefix="true" ""
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: contiv-etcd
namespace: kube-system
labels:
k8s-app: contiv-etcd
spec:
serviceName: contiv-etcd
selector:
matchLabels:
k8s-app: contiv-etcd
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
k8s-app: contiv-etcd
annotations:
# Marks this pod as a critical add-on.
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
tolerations:
# We need this to schedule on the master no matter what else is going on, so tolerate everything.
- key: ''
operator: Exists
effect: ''
# This likely isn't needed due to the above wildcard, but keep it in for now.
- key: CriticalAddonsOnly
operator: Exists
# Only run this pod on the master.
nodeSelector:
node-role.kubernetes.io/master: ""
hostNetwork: true
containers:
- name: contiv-etcd
image: quay.io/coreos/etcd:v3.3.24
imagePullPolicy: IfNotPresent
env:
- name: CONTIV_ETCD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: HOST_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
- name: ETCDCTL_API
value: "3"
command:
- /bin/sh
args:
- -c
- /usr/local/bin/etcd --name=contiv-etcd --data-dir=/var/etcd/contiv-data
--advertise-client-urls=http://0.0.0.0:12379 --listen-client-urls=http://0.0.0.0:12379 --listen-peer-urls=http://0.0.0.0:12380
volumeMounts:
- name: var-etcd
mountPath: /var/etcd/
livenessProbe:
exec:
command:
- /bin/sh
- -c
- |
echo "$HOST_IP" | grep -q ':'
if [ "$?" -eq "0" ];
then
HOST_IP="[$HOST_IP]"
fi
etcdctl get --endpoints=$HOST_IP:32379 /
periodSeconds: 3
initialDelaySeconds: 20
resources:
requests:
cpu: 100m
volumes:
- name: var-etcd
hostPath:
path: /var/etcd
---
apiVersion: v1
kind: Service
metadata:
name: contiv-etcd
namespace: kube-system
spec:
type: NodePort
# Match contiv-etcd DaemonSet.
selector:
k8s-app: contiv-etcd
ports:
- port: 12379
nodePort: 32379
---
apiVersion: v1
kind: ConfigMap
metadata:
name: contiv-ksr-http-cfg
namespace: kube-system
data:
http.conf: |
endpoint: "0.0.0.0:9191"
---
# This config map contains ETCD configuration for connecting to the contiv-etcd defined above.
apiVersion: v1
kind: ConfigMap
metadata:
name: contiv-etcd-cfg
namespace: kube-system
data:
etcd.conf: |
dial-timeout: 10000000000
allow-delayed-start: true
insecure-transport: true
endpoints:
- "__HOST_IP__:32379"
---
# This config map contains ETCD configuration for connecting to the contiv-etcd defined above with auto compact.
apiVersion: v1
kind: ConfigMap
metadata:
name: contiv-etcd-withcompact-cfg
namespace: kube-system
data:
etcd.conf: |
insecure-transport: true
dial-timeout: 10000000000
auto-compact: 600000000000
allow-delayed-start: true
reconnect-interval: 2000000000
endpoints:
- "__HOST_IP__:32379"
---
# This installs contiv-vswitch on each master and worker node in a Kubernetes cluster.
# It consists of the following containers:
# - contiv-vswitch container: contains VPP and its management agent
# - contiv-cni container: installs CNI on the host
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: contiv-vswitch
namespace: kube-system
labels:
k8s-app: contiv-vswitch
spec:
selector:
matchLabels:
k8s-app: contiv-vswitch
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
k8s-app: contiv-vswitch
annotations:
# Marks this pod as a critical add-on.
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
tolerations:
# We need this to schedule on the master no matter what else is going on, so tolerate everything.
- key: ''
operator: Exists
effect: ''
# This likely isn't needed due to the above wildcard, but keep it in for now.
- key: CriticalAddonsOnly
operator: Exists
hostNetwork: true
hostPID: true
# Init containers are executed before regular containers, must finish successfully before regular ones are started.
initContainers:
# This container installs the Contiv CNI binaries and CNI network config file on each node.
- name: contiv-cni
image: contivvpp/cni:latest
imagePullPolicy: IfNotPresent
env:
- name: SLEEP
value: "false"
volumeMounts:
- mountPath: /opt/cni/bin
name: cni-bin-dir
- mountPath: /etc/cni/net.d
name: cni-net-dir
- mountPath: /cni/cfg
name: contiv-cni-cfg
- mountPath: /var/run/contiv
name: contiv-run
# This init container extracts/copies default VPP config to the host and initializes VPP core dumps.
- name: vpp-init
image: contivvpp/vswitch:latest
imagePullPolicy: IfNotPresent
env:
- name: HOST_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
command:
- /bin/sh
args:
- -c
- |
set -eu
chmod 700 /run/vpp
rm -rf /dev/shm/db /dev/shm/global_vm /dev/shm/vpe-api
if [ ! -e /host/etc/vpp/contiv-vswitch.conf ]; then
cp /etc/vpp/contiv-vswitch.conf /host/etc/vpp/
fi
if [ ! -d /var/run/contiv ]; then
mkdir /var/run/contiv
fi
chmod 700 /var/run/contiv
rm -f /var/run/contiv/cni.sock
if ip link show vpp1 >/dev/null 2>&1; then
ip link del vpp1
fi
cp -f /usr/local/bin/vppctl /host/usr/local/bin/vppctl
sysctl -w debug.exception-trace=1
sysctl -w kernel.core_pattern="/var/contiv/dumps/%e-%t"
ulimit -c unlimited
echo 2 > /proc/sys/fs/suid_dumpable
# replace localhost IP by node IP since node port doesn't work
# on localhost IP in a certain scenario
cp /etc/etcd/etcd.conf /tmp/etcd.conf
set +e
echo "$HOST_IP" | grep -q ':'
if [ "$?" -eq "0" ];
then
HOST_IP="[$HOST_IP]"
fi
sed -i "s/__HOST_IP__/$HOST_IP/g" /tmp/etcd.conf
resources: {}
securityContext:
privileged: true
volumeMounts:
- name: usr-local-bin
mountPath: /host/usr/local/bin
- name: vpp-cfg
mountPath: /host/etc/vpp
- name: shm
mountPath: /dev/shm
- name: vpp-run
mountPath: /run/vpp
- name: contiv-run
mountPath: /var/run/contiv
- name: tmp
mountPath: /tmp
- name: etcd-cfg
mountPath: /etc/etcd
- name: core-dumps
mountPath: /var/contiv/dumps
containers:
# Runs contiv-vswitch container on each Kubernetes node.
# It contains the vSwitch VPP and its management agent.
- name: contiv-vswitch
image: contivvpp/vswitch:latest
imagePullPolicy: IfNotPresent
securityContext:
privileged: true
ports:
# readiness + liveness probe
- containerPort: 9999
readinessProbe:
httpGet:
path: /readiness
port: 9999
periodSeconds: 3
timeoutSeconds: 2
failureThreshold: 3
initialDelaySeconds: 15
livenessProbe:
httpGet:
path: /liveness
port: 9999
periodSeconds: 3
timeoutSeconds: 2
failureThreshold: 3
initialDelaySeconds: 60
env:
- name: MICROSERVICE_LABEL
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: HOST_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
- name: CONTIV_CONFIG
value: "/etc/contiv/contiv.conf"
- name: CONTROLLER_CONFIG
value: "/etc/contiv/controller.conf"
- name: SERVICE_CONFIG
value: "/etc/contiv/service.conf"
- name: ETCD_CONFIG
value: "/tmp/etcd.conf"
- name: BOLT_CONFIG
value: "/etc/vpp-agent/bolt.conf"
# Uncomment to log graph traversal (very verbose):
# - name: KVSCHED_LOG_GRAPH_WALK
# value: "true"
# Uncomment to verify effect of every transaction:
# - name: KVSCHED_VERIFY_MODE
# value: "true"
- name: TELEMETRY_CONFIG
value: "/etc/vpp-agent/telemetry.conf"
- name: GOVPP_CONFIG
value: "/etc/vpp-agent/govpp.conf"
- name: LOGS_CONFIG
value: "/etc/vpp-agent/logs.conf"
- name: HTTP_CONFIG
value: "/etc/vpp-agent/http.conf"
- name: GRPC_CONFIG
value: "/etc/vpp-agent/grpc.conf"
- name: GRPC2_CONFIG
value: "/etc/vpp-agent/grpc2.conf"
- name: LINUX_IFPLUGIN_CONFIG
value: "/etc/vpp-agent/linux-ifplugin.conf"
- name: LINUX_L3PLUGIN_CONFIG
value: "/etc/vpp-agent/linux-l3plugin.conf"
- name: KVSCHEDULER_CONFIG
value: "/etc/vpp-agent/kvscheduler.conf"
- name: DISABLE_INTERFACE_STATS
value: "y"
volumeMounts:
- name: var-bolt
mountPath: /var/bolt
- name: etcd-cfg
mountPath: /etc/etcd
- name: vpp-cfg
mountPath: /etc/vpp
- name: shm
mountPath: /dev/shm
- name: dev
mountPath: /dev
- name: sys-bus-pci
mountPath: /sys/bus/pci
- name: vpp-run
mountPath: /run/vpp
- name: contiv-run
mountPath: /var/run/contiv
- name: contiv-agent-cfg
mountPath: /etc/contiv
- name: vpp-agent-cfg
mountPath: /etc/vpp-agent
- name: tmp
mountPath: /tmp
- name: core-dumps
mountPath: /var/contiv/dumps
- name: docker-socket
mountPath: /var/run/docker.sock
- name: kubelet-api
mountPath: /var/lib/kubelet
resources:
limits:
hugepages-2Mi: 512Mi
memory: 512Mi
requests:
cpu: 250m
volumes:
# Used to connect to contiv-etcd.
- name: etcd-cfg
configMap:
name: contiv-etcd-cfg
# Used to install CNI.
- name: cni-bin-dir
hostPath:
path: /opt/cni/bin
- name: cni-net-dir
hostPath:
path: /etc/cni/net.d
# VPP startup config folder.
- name: vpp-cfg
hostPath:
path: /etc/vpp
# To install vppctl.
- name: usr-local-bin
hostPath:
path: /usr/local/bin
# /dev mount is required for DPDK-managed NICs on VPP (/dev/uio0) and for shared memory communication with VPP (/dev/shm)
- name: dev
hostPath:
path: /dev
- name: shm
hostPath:
path: /dev/shm
# /sys/bus/pci is required for binding PCI devices to specific drivers
- name: sys-bus-pci
hostPath:
path: /sys/bus/pci
# For CLI unix socket.
- name: vpp-run
hostPath:
path: /run/vpp
# For CNI / STN unix domain socket
- name: contiv-run
hostPath:
path: /var/run/contiv
# Used to configure contiv agent.
- name: contiv-agent-cfg
configMap:
name: contiv-agent-cfg
# Used to configure vpp agent.
- name: vpp-agent-cfg
configMap:
name: vpp-agent-cfg
# Used for vswitch core dumps
- name: core-dumps
hostPath:
path: /var/contiv/dumps
# /tmp in the vswitch container (needs to be persistent between container restarts to obtain post-mortem files)
- name: tmp
emptyDir:
medium: Memory
# persisted bolt data
- name: var-bolt
hostPath:
path: /var/bolt
- name: docker-socket
hostPath:
path: /var/run/docker.sock
# CNI config
- name: contiv-cni-cfg
configMap:
name: contiv-cni-cfg
# kubelet api dir
- name: kubelet-api
hostPath:
path: /var/lib/kubelet
---
# This installs the contiv-ksr (Kubernetes State Reflector) on the master node in a Kubernetes cluster.
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: contiv-ksr
namespace: kube-system
labels:
k8s-app: contiv-ksr
spec:
selector:
matchLabels:
k8s-app: contiv-ksr
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
k8s-app: contiv-ksr
annotations:
# Marks this pod as a critical add-on.
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
tolerations:
# We need this to schedule on the master no matter what else is going on, so tolerate everything.
- key: ''
operator: Exists
effect: ''
# This likely isn't needed due to the above wildcard, but keep it in for now.
- key: CriticalAddonsOnly
operator: Exists
# Only run this pod on the master.
nodeSelector:
node-role.kubernetes.io/master: ""
hostNetwork: true
# This grants the required permissions to contiv-ksr.
serviceAccountName: contiv-ksr
initContainers:
# This init container waits until etcd is started
- name: wait-foretcd
env:
- name: ETCDPORT
value: "32379"
- name: HOST_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
image: busybox:1.29.3
imagePullPolicy: IfNotPresent
command:
- /bin/sh
args:
- -c
- |
cp /etc/etcd/etcd.conf /tmp/cfg/etcd.conf
echo "$HOST_IP" | grep -q ':'
if [ "$?" -eq "0" ];
then
HOST_IP="[$HOST_IP]"
fi
sed -i "s/__HOST_IP__/$HOST_IP/g" /tmp/cfg/etcd.conf
until nc -w 2 $HOST_IP:$ETCDPORT; do echo waiting for etcd; sleep 2; done;
volumeMounts:
- name: tmp-cfg
mountPath: /tmp/cfg
- name: etcd-cfg
mountPath: /etc/etcd
containers:
- name: contiv-ksr
image: contivvpp/ksr:latest
imagePullPolicy: IfNotPresent
env:
- name: ETCD_CONFIG
value: "/tmp/cfg/etcd.conf"
- name: HTTP_CONFIG
value: "/etc/http/http.conf"
volumeMounts:
- name: tmp-cfg
mountPath: /tmp/cfg
- name: http-cfg
mountPath: /etc/http
readinessProbe:
httpGet:
path: /readiness
port: 9191
periodSeconds: 3
timeoutSeconds: 2
failureThreshold: 3
initialDelaySeconds: 10
livenessProbe:
httpGet:
path: /liveness
port: 9191
periodSeconds: 3
timeoutSeconds: 2
failureThreshold: 3
initialDelaySeconds: 30
resources:
requests:
cpu: 100m
volumes:
# Used to connect to contiv-etcd.
- name: etcd-cfg
configMap:
name: contiv-etcd-withcompact-cfg
- name: tmp-cfg
emptyDir: {}
- name: http-cfg
configMap:
name: contiv-ksr-http-cfg
---
# This cluster role defines a set of permissions required for contiv-ksr.
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: contiv-ksr
namespace: kube-system
rules:
- apiGroups:
- ""
- networking.k8s.io
resources:
- pods
- namespaces
- networkpolicies
- services
- endpoints
- nodes
verbs:
- watch
- list
---
# This defines a service account for contiv-ksr.
apiVersion: v1
kind: ServiceAccount
metadata:
name: contiv-ksr
namespace: kube-system
---
# This binds the contiv-ksr cluster role with contiv-ksr service account.
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: contiv-ksr
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: contiv-ksr
subjects:
- kind: ServiceAccount
name: contiv-ksr
namespace: kube-system
---
# This installs the contiv-crd on the master node in a Kubernetes cluster.
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: contiv-crd
namespace: kube-system
labels:
k8s-app: contiv-crd
spec:
selector:
matchLabels:
k8s-app: contiv-crd
updateStrategy:
type: RollingUpdate
template:
metadata:
labels:
k8s-app: contiv-crd
annotations:
# Marks this pod as a critical add-on.
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
tolerations:
# We need this to schedule on the master no matter what else is going on, so tolerate everything.
- key: ''
operator: Exists
effect: ''
# This likely isn't needed due to the above wildcard, but keep it in for now.
- key: CriticalAddonsOnly
operator: Exists
# Only run this pod on the master.
nodeSelector:
node-role.kubernetes.io/master: ""
hostNetwork: true
# This grants the required permissions to contiv-crd.
serviceAccountName: contiv-crd
initContainers:
# This init container waits until etcd is started
- name: wait-foretcd
env:
- name: ETCDPORT
value: "32379"
- name: HOST_IP
valueFrom:
fieldRef:
fieldPath: status.hostIP
image: busybox:1.29.3
imagePullPolicy: IfNotPresent
command:
- /bin/sh
args:
- -c
- |
cp /etc/etcd/etcd.conf /tmp/cfg/etcd.conf
echo "$HOST_IP" | grep -q ':'
if [ "$?" -eq "0" ];
then
HOST_IP="[$HOST_IP]"
fi
sed -i "s/__HOST_IP__/$HOST_IP/g" /tmp/cfg/etcd.conf
until nc -w 2 $HOST_IP:$ETCDPORT; do echo waiting for etcd; sleep 2; done;
volumeMounts:
- name: tmp-cfg
mountPath: /tmp/cfg
- name: etcd-cfg
mountPath: /etc/etcd
# This init container copies contiv-netctl tool to the host.
- name: netctl-init
image: contivvpp/crd:latest
imagePullPolicy: IfNotPresent
command:
- /bin/sh
args:
- -c
- |
echo '#!/bin/sh
kubectl get pods -n kube-system | \
grep contiv-crd | \
cut -d " " -f 1 | \
xargs -I{} kubectl exec -n kube-system {} \
/contiv-netctl "$@"' \
> /host/usr/local/bin/contiv-netctl || true
chmod +x /host/usr/local/bin/contiv-netctl || true
volumeMounts:
- name: usr-local-bin
mountPath: /host/usr/local/bin
containers:
- name: contiv-crd
image: contivvpp/crd:latest
imagePullPolicy: IfNotPresent
env:
- name: ETCD_CONFIG
value: "/tmp/cfg/etcd.conf"
- name: HTTP_CONFIG
value: "/etc/http/http.conf"
- name: HTTP_CLIENT_CONFIG
value: "/etc/http/http.client.conf"
- name: CONTIV_CRD_VALIDATE_INTERVAL
value: "5"
- name: CONTIV_CRD_VALIDATE_STATE
value: "SB"
- name: DISABLE_NETCTL_REST
value: "true"
volumeMounts:
- name: tmp-cfg
mountPath: /tmp/cfg
- name: http-cfg
mountPath: /etc/http
readinessProbe:
httpGet:
path: /readiness
port: 9090
periodSeconds: 3
timeoutSeconds: 2
failureThreshold: 3
initialDelaySeconds: 10
livenessProbe:
httpGet:
path: /liveness
port: 9090
periodSeconds: 3
timeoutSeconds: 2
failureThreshold: 3
initialDelaySeconds: 30
resources:
requests:
cpu: 100m
volumes:
# Used to connect to contiv-etcd.
- name: etcd-cfg
configMap:
name: contiv-etcd-cfg
- name: usr-local-bin
hostPath:
path: /usr/local/bin
- name: http-cfg
configMap:
name: contiv-crd-http-cfg
- name: tmp-cfg
emptyDir: {}
---
# This cluster role defines a set of permissions required for contiv-crd.
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: contiv-crd
namespace: kube-system
rules:
- apiGroups:
- apiextensions.k8s.io
- nodeconfig.contiv.vpp
- telemetry.contiv.vpp
- contivpp.io
resources:
- customresourcedefinitions
- telemetryreports
- nodeconfigs
- externalinterfaces
- customnetworks
- servicefunctionchains
- customconfigurations
verbs:
- "*"
---
# This defines a service account for contiv-crd.
apiVersion: v1
kind: ServiceAccount
metadata:
name: contiv-crd
namespace: kube-system
---
# This binds the contiv-crd cluster role with contiv-crd service account.
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: contiv-crd
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: contiv-crd
subjects:
- kind: ServiceAccount
name: contiv-crd
namespace: kube-system
---
apiVersion: v1
kind: ConfigMap
metadata:
name: contiv-crd-http-cfg
namespace: kube-system
data:
http.conf: |
endpoint: "0.0.0.0:9090"
http.client.conf: |
port: 9999
use-https: false