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: |
Mohammed Naser | 511c3fa | 2022-03-17 17:54:10 -0400 | [diff] [blame] | 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 |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 21 | hostNetwork: true |
| 22 | volumes: |
Mohammed Naser | 511c3fa | 2022-03-17 17:54:10 -0400 | [diff] [blame] | 23 | - hostPath: |
| 24 | path: /etc/haproxy/haproxy.cfg |
| 25 | type: FileOrCreate |
| 26 | name: haproxyconf |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 27 | status: {} |