Initial commit
This commit is contained in:
35
static-pods/master/api-haproxy.yaml
Normal file
35
static-pods/master/api-haproxy.yaml
Normal file
@ -0,0 +1,35 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
namespace: kube-system
|
||||
name: k8s-api-haproxy
|
||||
labels:
|
||||
component: k8s-api-haproxy
|
||||
tier: control-plane
|
||||
spec:
|
||||
hostNetwork: true
|
||||
dnsPolicy: Default
|
||||
priorityClassName: system-node-critical
|
||||
automountServiceAccountToken: false
|
||||
tolerations:
|
||||
- key: node.kubernetes.io/not-ready
|
||||
effect: NoSchedule
|
||||
containers:
|
||||
- name: api-haproxy
|
||||
image: haproxy:2.4.19-alpine
|
||||
{{ if .vars.control_plane.reserve_resources }}
|
||||
resources:
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 16Mi
|
||||
{{ end }}
|
||||
volumeMounts:
|
||||
- name: config
|
||||
mountPath: /usr/local/etc/haproxy/haproxy.cfg
|
||||
readOnly: true
|
||||
volumes:
|
||||
- name: config
|
||||
hostPath:
|
||||
type: File
|
||||
path: /etc/kubernetes/haproxy-api.cfg
|
||||
|
||||
Reference in New Issue
Block a user