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

22 lines
531 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
2022-09-16 22:37:44 +00:00
tag: "v20220916-gd32f8c343@sha256:09c421ac743bace19ab77979b82186941c5125c95e62cdb40bdf41293b5c275c"
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