From 991b35fd09dc16d67be1f4966c079b9cd566c07c Mon Sep 17 00:00:00 2001 From: piyushjain18 <62988355+piyushjain18@users.noreply.github.com> Date: Thu, 21 Jan 2021 23:08:19 +0900 Subject: [PATCH] Update service name in example of Name based virtual hosting `service2` is mapped to `second.bar.com` in the given example ``` - host: second.bar.com http: paths: - pathType: Prefix path: "/" backend: service: name: service2 port: number: 80 ``` --- content/en/docs/concepts/services-networking/ingress.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/services-networking/ingress.md b/content/en/docs/concepts/services-networking/ingress.md index 3977cbc23303d..7a189a401b00c 100644 --- a/content/en/docs/concepts/services-networking/ingress.md +++ b/content/en/docs/concepts/services-networking/ingress.md @@ -378,7 +378,7 @@ web traffic to the IP address of your Ingress controller can be matched without virtual host being required. For example, the following Ingress routes traffic -requested for `first.bar.com` to `service1`, `second.foo.com` to `service2`, and any traffic +requested for `first.bar.com` to `service1`, `second.bar.com` to `service2`, and any traffic to the IP address without a hostname defined in request (that is, without a request header being presented) to `service3`.