From 228ac01c84d99ecaeb9dcdc85d0fb39a6205094c Mon Sep 17 00:00:00 2001 From: Kevin Kelani <926865+kkallday@users.noreply.github.com> Date: Wed, 23 Oct 2019 08:24:19 -0700 Subject: [PATCH] Fixes path in first ingress resource yaml (#17017) When the second path is attached to `example-ingress` for `/v2` it doesn't work because the first path captures all paths. Solution is the make the `/` capture everything except `/v2` (also captures `/v2/`) --- .../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 b44a36501c..8ea504bd4a 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