-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs based on comments from a third-party (#44)
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,12 +47,13 @@ First let's create a new machine which will hold the containers:: | |
$ docker-machine create --driver virtualbox default | ||
$ eval $(docker-machine env default) | ||
|
||
**Step 4: Start all of our containers** | ||
**Step 4: Clone the Envoy repo, and start all of our containers** | ||
|
||
:: | ||
If you have not cloned the envoy repo, clone it with ``git clone [email protected]:lyft/envoy`` | ||
or ``git clone https://github.com/lyft/envoy.git``:: | ||
|
||
$ pwd | ||
/src/envoy/example | ||
envoy/example | ||
$ docker-compose up --build -d | ||
$ docker-compose ps | ||
Name Command State Ports | ||
|
@@ -119,8 +120,8 @@ of envoy.:: | |
Creating and starting example_service1_2 ... done | ||
Creating and starting example_service1_3 ... done | ||
|
||
Now if we send a request to service1, the fron envoy will load balance the | ||
request by doing a round robin of the three service1 machines:: | ||
Now if we send a request to service1 multiple times, the front envoy will load balance the | ||
requests by doing a round robin of the three service1 machines:: | ||
|
||
$ curl -v $(docker-machine ip default):8000/service/1 | ||
* Trying 192.168.99.100... | ||
|