62 lines
1.7 KiB
YAML
62 lines
1.7 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-errors
|
|
labels:
|
|
app.kubernetes.io/name: nginx-errors
|
|
app.kubernetes.io/part-of: ingress-nginx
|
|
spec:
|
|
selector:
|
|
app.kubernetes.io/name: nginx-errors
|
|
app.kubernetes.io/part-of: ingress-nginx
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8080
|
|
name: http
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nginx-errors
|
|
labels:
|
|
app.kubernetes.io/name: nginx-errors
|
|
app.kubernetes.io/part-of: ingress-nginx
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: nginx-errors
|
|
app.kubernetes.io/part-of: ingress-nginx
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: nginx-errors
|
|
app.kubernetes.io/part-of: ingress-nginx
|
|
spec:
|
|
containers:
|
|
- name: nginx-error-server
|
|
image: registry.k8s.io/ingress-nginx/nginx-errors:v20230404-helm-chart-4.6.0-11-gc76179c04@sha256:aabd7a001f6a0a07ed6ea8f6da87e928bfa8f971eba2bef708f3e8504fc5cc9b
|
|
ports:
|
|
- containerPort: 8080
|
|
# Setting the environment variable DEBUG we can see the headers sent
|
|
# by the ingress controller to the backend in the client response.
|
|
# env:
|
|
# - name: DEBUG
|
|
# value: "true"
|
|
|
|
# Mounting custom error page from configMap
|
|
# volumeMounts:
|
|
# - name: custom_error_pages
|
|
# mountPath: /www
|
|
|
|
# Mounting custom error page from configMap
|
|
# volumes:
|
|
# - name: custom_error_pages
|
|
# configMap:
|
|
# name: custom_error_pages
|
|
# items:
|
|
# - key: "404"
|
|
# path: "404.html"
|
|
# - key: "503"
|
|
# path: "503.html"
|