2019-04-10 12:56:18 +00:00
|
|
|
---
|
|
|
|
- name: haproxy | Cleanup potentially deployed nginx-proxy
|
|
|
|
file:
|
|
|
|
path: "{{ kube_manifest_dir }}/nginx-proxy.yml"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: haproxy | Make haproxy directory
|
|
|
|
file:
|
|
|
|
path: "{{ haproxy_config_dir }}"
|
|
|
|
state: directory
|
2021-12-06 17:40:32 +00:00
|
|
|
mode: 0755
|
2019-04-10 12:56:18 +00:00
|
|
|
owner: root
|
|
|
|
|
|
|
|
- name: haproxy | Write haproxy configuration
|
|
|
|
template:
|
2019-05-08 20:38:36 +00:00
|
|
|
src: "loadbalancer/haproxy.cfg.j2"
|
2019-04-10 12:56:18 +00:00
|
|
|
dest: "{{ haproxy_config_dir }}/haproxy.cfg"
|
|
|
|
owner: root
|
|
|
|
mode: 0755
|
|
|
|
backup: yes
|
2019-06-10 12:59:08 +00:00
|
|
|
|
|
|
|
- name: haproxy | Get checksum from config
|
|
|
|
stat:
|
|
|
|
path: "{{ haproxy_config_dir }}/haproxy.cfg"
|
2021-02-10 13:36:59 +00:00
|
|
|
get_attributes: no
|
|
|
|
get_checksum: yes
|
|
|
|
get_mime: no
|
2019-06-10 12:59:08 +00:00
|
|
|
register: haproxy_stat
|
|
|
|
|
|
|
|
- name: haproxy | Write static pod
|
|
|
|
template:
|
|
|
|
src: manifests/haproxy.manifest.j2
|
|
|
|
dest: "{{ kube_manifest_dir }}/haproxy.yml"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0640
|