forked from aledbf/kube-keepalived-vip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vip-daemonset-proxy.yaml
70 lines (70 loc) · 1.93 KB
/
vip-daemonset-proxy.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
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kube-keepalived-vip
spec:
template:
metadata:
labels:
name: kube-keepalived-vip
spec:
hostNetwork: true
containers:
- image: aledbf/haproxy-self-reload:0.1
name: haproxy-self-reload
livenessProbe:
httpGet:
path: /
port: 1936
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 5
volumeMounts:
- name: haproxy
mountPath: /etc/haproxy
- image: aledbf/kube-keepalived-vip:0.35
name: kube-keepalived-vip
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 15
timeoutSeconds: 3
securityContext:
privileged: true
volumeMounts:
- mountPath: /lib/modules
name: modules
readOnly: true
- mountPath: /dev
name: dev
- name: haproxy
mountPath: /etc/haproxy
# use downward API
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# to use unicast
args:
- --services-configmap=default/vip-configmap
- --proxy-protocol-mode=true
# unicast uses the ip of the nodes instead of multicast
# this is useful if running in cloud providers (like AWS)
#- --use-unicast=true
volumes:
- name: modules
hostPath:
path: /lib/modules
- name: dev
hostPath:
path: /dev
- name: haproxy
emptyDir: {}
nodeSelector:
type: sub-worker