Skip to content
Snippets Groups Projects
Commit 1911fe5c authored by Johann Queuniet's avatar Johann Queuniet Committed by k8s-ci-robot
Browse files

fix nginx proxy configuration conflicts (#3489)


* Allow configuration of nginx proxy config path

* Fix the internal nginx configuration location

Signed-off-by: default avatarJohann Queuniet <contact@lordran.net>
parent 2117e816
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@ nginx_cpu_requests: 25m
nginx_image_repo: nginx
nginx_image_tag: 1.13
nginx_config_dir: "/etc/nginx"
etcd_config_dir: /etc/ssl/etcd
......
......@@ -6,7 +6,7 @@
- name: nginx-proxy | Make nginx directory
file:
path: /etc/nginx
path: "{{ nginx_config_dir }}"
state: directory
mode: 0700
owner: root
......@@ -14,7 +14,7 @@
- name: nginx-proxy | Write nginx-proxy configuration
template:
src: nginx.conf.j2
dest: "/etc/nginx/nginx.conf"
dest: "{{ nginx_config_dir }}/nginx.conf"
owner: root
mode: 0755
backup: yes
......@@ -33,4 +33,4 @@ spec:
volumes:
- name: etc-nginx
hostPath:
path: /etc/nginx
path: {{ nginx_config_dir }}
......@@ -120,7 +120,7 @@
- /etc/ssl/etcd
- /var/log/calico
- /etc/cni
- /etc/nginx
- "{{ nginx_config_dir }}"
- /etc/dnsmasq.d
- /etc/dnsmasq.conf
- /etc/dnsmasq.d-available
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment