2016-09-28 11:05:08 +00:00
|
|
|
---
|
|
|
|
- name: nginx-proxy | Write static pod
|
2017-02-17 21:22:34 +00:00
|
|
|
template:
|
|
|
|
src: manifests/nginx-proxy.manifest.j2
|
|
|
|
dest: "{{kube_manifest_dir}}/nginx-proxy.yml"
|
2016-09-28 11:05:08 +00:00
|
|
|
|
|
|
|
- name: nginx-proxy | Make nginx directory
|
2017-02-17 21:22:34 +00:00
|
|
|
file:
|
|
|
|
path: /etc/nginx
|
|
|
|
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:
|
|
|
|
src: nginx.conf.j2
|
|
|
|
dest: "/etc/nginx/nginx.conf"
|
|
|
|
owner: root
|
|
|
|
mode: 0755
|
|
|
|
backup: yes
|