fix: typo

This commit is contained in:
antoinegauvain 2019-12-16 19:09:24 +01:00
parent 248baeae8a
commit 38489fbf15
1 changed files with 1 additions and 1 deletions

View File

@ -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.