2016-09-28 11:05:08 +00:00
|
|
|
---
|
2019-04-10 12:56:18 +00:00
|
|
|
- name: haproxy | Cleanup potentially deployed haproxy
|
|
|
|
file:
|
|
|
|
path: "{{ kube_manifest_dir }}/haproxy.yml"
|
|
|
|
state: absent
|
|
|
|
|
2016-09-28 11:05:08 +00:00
|
|
|
- name: nginx-proxy | Make nginx directory
|
2017-02-17 21:22:34 +00:00
|
|
|
file:
|
2018-10-11 13:33:18 +00:00
|
|
|
path: "{{ nginx_config_dir }}"
|
2017-02-17 21:22:34 +00:00
|
|
|
state: directory
|
|
|
|
mode: 0700
|
|
|
|
owner: root
|
2016-09-28 11:05:08 +00:00
|
|
|
|
|
|
|
- name: nginx-proxy | Write nginx-proxy configuration
|
2017-02-17 21:22:34 +00:00
|
|
|
template:
|
2019-05-08 20:38:36 +00:00
|
|
|
src: "loadbalancer/nginx.conf.j2"
|
2018-10-11 13:33:18 +00:00
|
|
|
dest: "{{ nginx_config_dir }}/nginx.conf"
|
2017-02-17 21:22:34 +00:00
|
|
|
owner: root
|
|
|
|
mode: 0755
|
|
|
|
backup: yes
|
2019-06-10 12:59:08 +00:00
|
|
|
|
|
|
|
- name: nginx-proxy | Get checksum from config
|
|
|
|
stat:
|
|
|
|
path: "{{ nginx_config_dir }}/nginx.conf"
|
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: nginx_stat
|
|
|
|
|
|
|
|
- name: nginx-proxy | Write static pod
|
|
|
|
template:
|
|
|
|
src: manifests/nginx-proxy.manifest.j2
|
|
|
|
dest: "{{ kube_manifest_dir }}/nginx-proxy.yml"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0640
|