-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtunnel-controller-ds.yaml
126 lines (121 loc) · 2.62 KB
/
tunnel-controller-ds.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
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ipvs-tunnel-controller
rules:
- apiGroups:
- ""
resources:
- services
- endpoints
- pods
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- events
verbs:
- create
- get
- list
- patch
- update
- watch
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: ipvs-tunnel-controller
namespace: kube-system
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ipvs-tunnel-controller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: ipvs-tunnel-controller
subjects:
- kind: ServiceAccount
name: ipvs-tunnel-controller
namespace: kube-system
---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: ipvs-tunnel-controller
namespace: kube-system
labels:
app: ipvs-tunnel-controller
k8s-app: dw-ipvs
annotations:
prometheus.io/path: "/metrics"
prometheus.io/port: "8123"
prometheus.io/scrape: "true"
spec:
updateStrategy:
type: RollingUpdate
template:
metadata:
annotations:
log_drop: "true"
ipvs-tunnel-controller.demonware.net/ignore: "true"
labels:
app: ipvs-tunnel-controller
k8s-app: dw-ipvs
spec:
serviceAccountName: ipvs-tunnel-controller
hostNetwork: true
hostIPC: true
hostPID: true
tolerations:
- key: node-role.kubernetes.io/master
effect: NoSchedule
containers:
- name: tunnel-controller
image: Demonware/tunnel-controller:v0.1.1-0-g5eee68f
imagePullPolicy: Always
ports:
- containerPort: 8123
name: metrics
- containerPort: 8124
name: health
args: ["-kubeconfig", "", "-logtostderr", "-v", "2"]
livenessProbe:
httpGet:
path: /healthz
port: health
initialDelaySeconds: 30
periodSeconds: 5
securityContext:
privileged: true
capabilities:
add: ["ALL"]
resources:
limits:
memory: 256Mi
requests:
cpu: 100m
memory: 256Mi
env:
- name: DOCKER_API_VERSION
value: "1.24"
volumeMounts:
- name: dockersocket
mountPath: /var/run/docker.sock
readOnly: true
- name: lib-modules
mountPath: /lib/modules
readOnly: true
volumes:
- name: dockersocket
hostPath:
path: /var/run/docker.sock
- name: lib-modules
hostPath:
path: /lib/modules