ingress-nginx-helm/examples/customization/custom-errors/custom-default-backend.helm.values.yaml

22 lines
520 B
YAML
Raw Normal View History

2022-01-16 21:57:24 +00:00
controller:
2022-07-11 02:00:41 +00:00
config:
custom-http-errors: "404,503"
2022-01-16 21:57:24 +00:00
defaultBackend:
enabled: true
image:
2022-06-10 11:03:34 +00:00
registry: registry.k8s.io
2022-01-16 21:57:24 +00:00
image: ingress-nginx/nginx-errors
2023-05-27 14:47:45 +00:00
tag: "v20230505@sha256:3600dcd1bbd0d05959bb01af4b272714e94d22d24a64e91838e7183c80e53f7f"
2022-01-16 21:57:24 +00:00
extraVolumes:
2022-03-09 14:57:20 +00:00
- name: custom-error-pages
2022-01-16 21:57:24 +00:00
configMap:
2022-03-09 14:57:20 +00:00
name: custom-error-pages
2022-01-16 21:57:24 +00:00
items:
- key: "404"
path: "404.html"
- key: "503"
path: "503.html"
extraVolumeMounts:
2022-03-09 14:57:20 +00:00
- name: custom-error-pages
2022-01-16 21:57:24 +00:00
mountPath: /www