diff --git a/docs/examples/customization/custom-errors/custom-default-backend-error_pages.configMap.yaml b/docs/examples/customization/custom-errors/custom-default-backend-error_pages.configMap.yaml index 86b1c44e8..303734c90 100644 --- a/docs/examples/customization/custom-errors/custom-default-backend-error_pages.configMap.yaml +++ b/docs/examples/customization/custom-errors/custom-default-backend-error_pages.configMap.yaml @@ -3,7 +3,7 @@ apiVersion: v1 kind: ConfigMap metadata: - name: custom_error_pages + name: custom-error-pages data: 404: | diff --git a/docs/examples/customization/custom-errors/custom-default-backend.helm.values.yaml b/docs/examples/customization/custom-errors/custom-default-backend.helm.values.yaml index ce42bb9b5..fc00707ce 100644 --- a/docs/examples/customization/custom-errors/custom-default-backend.helm.values.yaml +++ b/docs/examples/customization/custom-errors/custom-default-backend.helm.values.yaml @@ -7,14 +7,14 @@ defaultBackend: image: ingress-nginx/nginx-errors tag: "0.48.1" extraVolumes: - - name: custom_error_pages + - name: custom-error-pages configMap: - name: custom_error_pages + name: custom-error-pages items: - key: "404" path: "404.html" - key: "503" path: "503.html" extraVolumeMounts: - - name: custom_error_pages + - name: custom-error-pages mountPath: /www