64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-ingress
|
|
namespace: nginx-ingress
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: nginx-ingress
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nginx-ingress
|
|
#annotations:
|
|
#prometheus.io/scrape: "true"
|
|
#prometheus.io/port: "9113"
|
|
spec:
|
|
serviceAccountName: nginx-ingress
|
|
containers:
|
|
- image: nginx/nginx-ingress:1.10.0
|
|
imagePullPolicy: Always
|
|
name: nginx-ingress
|
|
ports:
|
|
- name: http
|
|
containerPort: 80
|
|
hostPort: 80
|
|
- name: https
|
|
containerPort: 443
|
|
hostPort: 443
|
|
- name: readiness-port
|
|
containerPort: 8081
|
|
#- name: prometheus
|
|
#containerPort: 9113
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /nginx-ready
|
|
port: readiness-port
|
|
periodSeconds: 1
|
|
securityContext:
|
|
allowPrivilegeEscalation: true
|
|
runAsUser: 101 #nginx
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
add:
|
|
- NET_BIND_SERVICE
|
|
env:
|
|
- name: POD_NAMESPACE
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.namespace
|
|
- name: POD_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.name
|
|
args:
|
|
- -nginx-configmaps=$(POD_NAMESPACE)/nginx-config
|
|
- -default-server-tls-secret=$(POD_NAMESPACE)/default-server-secret
|
|
#- -v=3 # Enables extensive logging. Useful for troubleshooting.
|
|
#- -report-ingress-status
|
|
- -external-service=nginx-ingress
|
|
#- -enable-prometheus-metrics
|
|
- -global-configuration=$(POD_NAMESPACE)/nginx-configuration |