forked from infobloxopen/cni-infoblox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfoblox-daemonset.yaml
39 lines (39 loc) · 1.03 KB
/
infoblox-daemonset.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
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: infoblox-cni-daemon
namespace: kube-system
spec:
selector:
matchLabels:
name: infoblox-cni-daemon
template:
metadata:
labels:
name: infoblox-cni-daemon
spec:
terminationGracePeriodSeconds: 60
hostNetwork: true
containers:
- image: infoblox/infoblox-cni-daemon
name: infoblox-cni-daemon
volumeMounts:
- mountPath: /run/cni
name: socket-dir
imagePullPolicy: Always
args:
- "--grid-host=192.168.124.200"
- "--wapi-port=443"
- "--wapi-username=admin"
- "--wapi-password=infoblox"
- "--wapi-version=2.3"
- "--socket-dir=/run/cni"
- "--driver-name=infoblox"
- "--ssl-verify=false"
- "--network-view=default"
- "--network-container=192.168.0.0/24,192.169.0.0/24"
- "--prefix-length=25"
volumes:
- name: socket-dir
hostPath:
path: /run/cni