From ff1a982e6baa160bf75599db3c578d9ca78f74a2 Mon Sep 17 00:00:00 2001 From: Josh Woodcock Date: Sun, 22 Sep 2019 22:33:22 -0500 Subject: [PATCH] Add basepath to ingress (#16458) Without this change `curl hello-world.info` will return a 404 --- .../docs/tasks/access-application-cluster/ingress-minikube.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/access-application-cluster/ingress-minikube.md b/content/en/docs/tasks/access-application-cluster/ingress-minikube.md index 123699856b723..b56e54f0cc3d6 100644 --- a/content/en/docs/tasks/access-application-cluster/ingress-minikube.md +++ b/content/en/docs/tasks/access-application-cluster/ingress-minikube.md @@ -146,7 +146,7 @@ The following file is an Ingress resource that sends traffic to your Service via - host: hello-world.info http: paths: - - path: /(.+) + - path: /|/(.+) backend: serviceName: web servicePort: 8080