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

22 lines
521 B
YAML
Raw Normal View History

controller:
config:
custom-http-errors: "404,503"
defaultBackend:
enabled: true
image:
registry: registry.k8s.io
image: ingress-nginx/custom-error-pages
2024-10-06 00:12:04 +00:00
tag: v1.0.2@sha256:b2259cf6bfda813548a64bded551b1854cb600c4f095738b49b4c5cdf8ab9d21
extraVolumes:
- name: custom-error-pages
configMap:
name: custom-error-pages
items:
- key: "404"
path: "404.html"
- key: "503"
path: "503.html"
extraVolumeMounts:
- name: custom-error-pages
mountPath: /www