1911fe5ca8
* Allow configuration of nginx proxy config path * Fix the internal nginx configuration location Signed-off-by: Johann Queuniet <contact@lordran.net>
36 lines
956 B
Django/Jinja
36 lines
956 B
Django/Jinja
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-proxy
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: kube-nginx
|
|
spec:
|
|
hostNetwork: true
|
|
# When having win nodes in cluster without this patch, this pod cloud try to be created in windows
|
|
nodeSelector:
|
|
beta.kubernetes.io/os: linux
|
|
{% if kube_version|version_compare('v1.11.1', '>=') %}
|
|
priorityClassName: system-node-critical
|
|
{% endif %}
|
|
containers:
|
|
- name: nginx-proxy
|
|
image: {{ nginx_image_repo }}:{{ nginx_image_tag }}
|
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
|
resources:
|
|
limits:
|
|
cpu: {{ nginx_cpu_limit }}
|
|
memory: {{ nginx_memory_limit }}
|
|
requests:
|
|
cpu: {{ nginx_cpu_requests }}
|
|
memory: {{ nginx_memory_requests }}
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- mountPath: /etc/nginx
|
|
name: etc-nginx
|
|
readOnly: true
|
|
volumes:
|
|
- name: etc-nginx
|
|
hostPath:
|
|
path: {{ nginx_config_dir }}
|