-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ba2ffa
commit c2ae926
Showing
9 changed files
with
87 additions
and
15 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
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Building | ||
======== | ||
|
||
The Envoy build system uses cmake. In order to ease initial building and for a quick start, we | ||
provide an Ubuntu 14 based docker container that has everything needed inside of it to build | ||
and *statically link* envoy. The following command will build and run all of the tests. | ||
|
||
.. code-block:: console | ||
docker run -t -i -v <SOURCE_DIR>:/source lyft/envoy-build:latest /bin/bash -c "cd /source && ci/do_ci.sh normal" | ||
In order to build manually, cmake is used like so: | ||
|
||
.. code-block:: console | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
Note that in order for the above raw build to work, cmake variables will need to be configured so | ||
that the envoy build can find all of the needed third party dependencies (other variables are also | ||
available to turn on debug builds, address sanitizer, etc.). | ||
|
||
* :repo:`CMakeLists.txt` | ||
* :repo:`common.cmake` | ||
* :repo:`thirdparty.cmake` |
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Installation | ||
============ | ||
|
||
Currently we do not provide any pre-compiled binaries or startup scripts. Typically Envoy will be | ||
used with the :ref:`hot restart wrapper <operations_hot_restarter>` for launching. In the future we | ||
may provide OS specific deployment packages. |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Reference configurations | ||
======================== | ||
|
||
FIXFIX | ||
|
||
configgen | ||
--------- | ||
|
||
FIXFIX |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Requirements | ||
============ | ||
|
||
Envoy was initially developed and deployed on Ubuntu 14 LTS. It should work on any reasonably | ||
recent Linux including Ubuntu 16 LTS. | ||
|
||
Envoy has the following requirements: | ||
|
||
* GCC 4.9+ (for C++11 regex support) | ||
* `cotire <https://github.com/sakra/cotire>`_ (last tested with 1.7.8) | ||
* `spdlog <https://github.com/gabime/spdlog>`_ (last tested with 319a62) | ||
* `http-parser <https://github.com/nodejs/http-parser>`_ (last tested with 2.7.0) | ||
* `nghttp2 <https://github.com/nghttp2/nghttp2>`_ (last tested with 1.9.2) | ||
* `libevent <http://libevent.org/>`_ (last tested with 2.0.22) | ||
* `tclap <http://tclap.sourceforge.net/>`_ (last tested with 1.2.1) | ||
* `gperftools <https://github.com/gperftools/gperftools>`_ (last tested with 2.5.0) | ||
* `jansson <https://github.com/akheron/jansson>`_ (last tesed with 2.7) | ||
* `openssl <https://www.openssl.org/>`_ (last tesed with 1.0.2h) | ||
* `protobuf <https://github.com/google/protobuf>`_ (last tested with 3.0.0) | ||
|
||
In order to compile and run the tests the following is required: | ||
|
||
* `googletest <https://github.com/google/googletest>`_ | ||
|
||
In order to run code coverage the following is required: | ||
|
||
* `gcovr <http://gcovr.com/>`_ |
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
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
.. _operations_hot_restarter: | ||
|
||
Hot restart Python wrapper | ||
========================== |