-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvip-allocation-controller-deployment.yaml
111 lines (105 loc) · 2.15 KB
/
vip-allocation-controller-deployment.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
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ipvs-vip-allocation-controller
rules:
- apiGroups:
- ""
resources:
- services
- endpoints
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- services/status
verbs:
- get
- list
- watch
- update
- patch
- apiGroups:
- ""
resources:
- events
verbs:
- create
- get
- list
- patch
- update
- watch
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: ipvs-vip-allocation-controller
namespace: kube-system
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ipvs-vip-allocation-controller
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: ipvs-vip-allocation-controller
subjects:
- kind: ServiceAccount
name: ipvs-vip-allocation-controller
namespace: kube-system
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: ipvs-vip-allocation-controller
namespace: kube-system
labels:
app: ipvs-vip-allocation-controller
k8s-app: dw-ipvs
annotations:
prometheus.io/path: "/metrics"
prometheus.io/port: "8123"
prometheus.io/scrape: "true"
spec:
replicas: 1
selector:
matchLabels:
app: ipvs-vip-allocation-controller
k8s-app: dw-ipvs
template:
metadata:
labels:
app: ipvs-vip-allocation-controller
k8s-app: dw-ipvs
annotations:
spec:
serviceAccountName: ipvs-vip-allocation-controller
containers:
- name: ipvs-vip-allocation-controller
image: Demonware/vip-allocation-controller:v0.1.1-0-g5eee68f
imagePullPolicy: "Always"
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
args: ["-kubeconfig", "", "-logtostderr", "-cidr", "10.49.251.0/24", "-v", "2"]
livenessProbe:
httpGet:
path: /healthz
port: health
initialDelaySeconds: 30
periodSeconds: 5
ports:
- containerPort: 8123
name: metrics
- containerPort: 8124
name: health