From 38489fbf15c319acfed6d8e31c636ab241010a3d Mon Sep 17 00:00:00 2001 From: antoinegauvain Date: Mon, 16 Dec 2019 19:09:24 +0100 Subject: [PATCH] fix: typo --- 16-sidecar-containers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16-sidecar-containers/README.md b/16-sidecar-containers/README.md index d6b5b31..df63880 100644 --- a/16-sidecar-containers/README.md +++ b/16-sidecar-containers/README.md @@ -25,7 +25,7 @@ All the containers of a given pod share the same network, and can share the same ## Use cases -Sidecars are useful for containers that are tightly coupled. A good use case is when you migrate an app from one machine to containers. The application will have a lot of `localhost` or `127.0.0.1` harcoded. So with sidecars you can work around this. +Sidecars are useful for containers that are tightly coupled. A good use case is when you migrate an app from one machine to containers. The application will have a lot of `localhost` or `127.0.0.1` hardcoded. So with sidecars you can work around this. Another use case is to have sidecars helping the main container, like sending logs to a centralized system, sending the metrics to a specific system, doing SSL termination, etc.