ca9ea097df
Migrate older inline= syntax to pure yml syntax for module args as to be consistant with most of the rest of the tasks Cleanup some spacing in various files Rename some files named yaml to yml for consistancy
20 lines
444 B
YAML
20 lines
444 B
YAML
---
|
|
- name: nginx-proxy | Write static pod
|
|
template:
|
|
src: manifests/nginx-proxy.manifest.j2
|
|
dest: "{{kube_manifest_dir}}/nginx-proxy.yml"
|
|
|
|
- name: nginx-proxy | Make nginx directory
|
|
file:
|
|
path: /etc/nginx
|
|
state: directory
|
|
mode: 0700
|
|
owner: root
|
|
|
|
- name: nginx-proxy | Write nginx-proxy configuration
|
|
template:
|
|
src: nginx.conf.j2
|
|
dest: "/etc/nginx/nginx.conf"
|
|
owner: root
|
|
mode: 0755
|
|
backup: yes
|