blob: 0d6ea23fb8682236ddd9f3fe10ed3fd39a8f706a [file] [log] [blame]
Mohammed Naser336caf42022-03-11 17:56:45 -05001apiVersion: v1
2kind: Pod
3metadata:
4 name: haproxy
5 namespace: kube-system
6spec:
7 containers:
Mohammed Naser511c3fa2022-03-17 17:54:10 -04008 - 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
Mohammed Naser336caf42022-03-11 17:56:45 -050021 hostNetwork: true
22 volumes:
Mohammed Naser511c3fa2022-03-17 17:54:10 -040023 - hostPath:
24 path: /etc/haproxy/haproxy.cfg
25 type: FileOrCreate
26 name: haproxyconf
Mohammed Naser336caf42022-03-11 17:56:45 -050027status: {}