21 lines
399 B
Text
21 lines
399 B
Text
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: nginx-proxy
|
||
|
namespace: kube-system
|
||
|
spec:
|
||
|
hostNetwork: true
|
||
|
containers:
|
||
|
- name: nginx-proxy
|
||
|
image: {{ nginx_image_repo }}:{{ nginx_image_tag }}
|
||
|
securityContext:
|
||
|
privileged: true
|
||
|
volumeMounts:
|
||
|
- mountPath: /etc/nginx
|
||
|
name: etc-nginx
|
||
|
readOnly: true
|
||
|
volumes:
|
||
|
- name: etc-nginx
|
||
|
hostPath:
|
||
|
path: /etc/nginx
|