Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame^] | 1 | apiVersion: v1 |
2 | kind: Pod | ||||
3 | metadata: | ||||
4 | name: haproxy | ||||
5 | namespace: kube-system | ||||
6 | spec: | ||||
7 | containers: | ||||
8 | - image: haproxy:2.5 | ||||
9 | name: haproxy | ||||
10 | livenessProbe: | ||||
11 | failureThreshold: 8 | ||||
12 | httpGet: | ||||
13 | host: localhost | ||||
14 | path: /healthz | ||||
15 | port: 6443 | ||||
16 | scheme: HTTPS | ||||
17 | volumeMounts: | ||||
18 | - mountPath: /usr/local/etc/haproxy/haproxy.cfg | ||||
19 | name: haproxyconf | ||||
20 | readOnly: true | ||||
21 | hostNetwork: true | ||||
22 | volumes: | ||||
23 | - hostPath: | ||||
24 | path: /etc/haproxy/haproxy.cfg | ||||
25 | type: FileOrCreate | ||||
26 | name: haproxyconf | ||||
27 | status: {} |