mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
17 lines
252 B
YAML
17 lines
252 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: haproxy
|
|
spec:
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: haproxy
|
|
containers:
|
|
- name: haproxy
|
|
image: haproxy:1
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /usr/local/etc/haproxy/
|
|
|