From 8791babf36dae5cbfaa3443ad0a5525f3a4b5ed3 Mon Sep 17 00:00:00 2001 From: Yogendra Rampuria - Yogi Date: Thu, 30 Mar 2017 23:35:34 +0800 Subject: [PATCH] Fixed example for "Accession the Service" Example stated that a "frontend receives traffic from backend". It should be "frontend sends traffic to backend" --- docs/tutorials/kubernetes-basics/expose-intro.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/kubernetes-basics/expose-intro.html b/docs/tutorials/kubernetes-basics/expose-intro.html index c9c522f482..0750836cd4 100644 --- a/docs/tutorials/kubernetes-basics/expose-intro.html +++ b/docs/tutorials/kubernetes-basics/expose-intro.html @@ -72,7 +72,7 @@ title: Using a Service to Expose Your App

A Service provides load balancing of traffic across the contained set of Pods. This is useful when a service is created to group all Pods from a specific Deployment (our application will make use of this in the next module, when we'll have multiple instances running).

-

Services are also responsible for service-discovery within the cluster (covered in Accessing the Service). This will for example allow a frontend service (like a web server) to receive traffic from a backend service (like a database) without worrying about Pods.

+

Services are also responsible for service-discovery within the cluster (covered in Accessing the Service). This will for example allow a frontend service (like a web server) to send traffic to a backend service (like a database) without worrying about Pods.

Services match a set of Pods using Label Selectors, a grouping primitive that allows logical operation on Labels.