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