-
Notifications
You must be signed in to change notification settings - Fork 0
/
kea-dhcp-deployment.yaml
93 lines (93 loc) · 2.26 KB
/
kea-dhcp-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
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
labels:
app: dhcp-kea
name: dhcp-kea
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: dhcp-kea
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
type: RollingUpdate
template:
metadata:
creationTimestamp: null
labels:
app: dhcp-kea
spec:
containers:
- args:
- -c
- /kea/config/ctrl-agent.json
command:
- /usr/local/sbin/kea-ctrl-agent
image: jonasal/kea-ctrl-agent:2.2.0-alpine
imagePullPolicy: Always
name: dhcp-control
ports:
- containerPort: 8000
hostPort: 8000
name: ctrl-port
protocol: TCP
resources: {}
securityContext:
privileged: true
runAsUser: 0
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /kea/config/ctrl-agent.json
name: kea-ctrl
subPath: ctrl-agent.json
- mountPath: /kea/sockets
name: dhcp4-socket
- args:
- -c
- /kea/config/dhcp4.json
command:
- /usr/local/sbin/kea-dhcp4
image: jonasal/kea-dhcp4:2.2.0-alpine
imagePullPolicy: Always
name: dhcp-kea
ports:
- containerPort: 67
hostPort: 67
name: dhcp-port
protocol: UDP
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
volumeMounts:
- mountPath: /kea/config/dhcp4.json
name: kea-dhcp4
subPath: dhcp4.json
- mountPath: /kea/sockets
name: dhcp4-socket
dnsPolicy: ClusterFirst
hostNetwork: true
imagePullSecrets:
- name: gitlab-auth
nodeSelector:
node_id: five
restartPolicy: Always
schedulerName: default-scheduler
securityContext: {}
terminationGracePeriodSeconds: 30
volumes:
- configMap:
defaultMode: 420
name: kea-dhcp4
name: kea-dhcp4
- configMap:
defaultMode: 420
name: kea-ctrl
name: kea-ctrl
- emptyDir: {}
name: dhcp4-socket