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

22 lines
521 B
YAML
Raw Permalink 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
2024-08-14 17:56:02 +00:00
image: ingress-nginx/custom-error-pages
2025-01-13 08:13:17 +00:00
tag: v1.1.1@sha256:8c10776191ae44b5c387b8c7696d8bc17ceec90d7184a3a38b89ac8434b6c56b
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