From 72b8087bb169a00d989759961b8a9897db2cc1ef Mon Sep 17 00:00:00 2001 From: Matt Klein Date: Fri, 15 Sep 2017 10:23:57 -0700 Subject: [PATCH] fix more links (#1656) --- CONTRIBUTING.md | 2 +- DEVELOPER.md | 2 +- ci/build_setup.sh | 4 ++-- docs/extending/extending.rst | 2 +- docs/install/sandboxes/grpc_bridge.rst | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 12aab4e65eb9..72557422d789 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,7 +81,7 @@ maximize the chances of your PR being merged. * Please consider joining the [envoy-dev](https://groups.google.com/forum/#!forum/envoy-dev) mailing list. * If your PR involves any changes to - [envoy-filter-example](https://github.com/lyft/envoy-filter-example) (for example making a new + [envoy-filter-example](https://github.com/envoyproxy/envoy-filter-example) (for example making a new branch so that CI can pass) it is your responsibility to follow through with merging those changes back to master once the CI dance is done. diff --git a/DEVELOPER.md b/DEVELOPER.md index 5d5ee7d6030f..a4b56deb3144 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -18,4 +18,4 @@ Below is a list of additional documentation to aid the development process: - [Guide to contributing to Envoy](https://github.com/envoyproxy/envoy/blob/master/CONTRIBUTING.md) -- [Envoy filter example project (how to consume and extend Envoy as a submodule)](https://github.com/lyft/envoy-filter-example) +- [Envoy filter example project (how to consume and extend Envoy as a submodule)](https://github.com/envoyproxy/envoy-filter-example) diff --git a/ci/build_setup.sh b/ci/build_setup.sh index d8a3c5926505..e6e12751c353 100755 --- a/ci/build_setup.sh +++ b/ci/build_setup.sh @@ -73,10 +73,10 @@ ln -sf /thirdparty_build "${ENVOY_SRCDIR}"/ci/prebuilt # Setup Envoy consuming project. if [[ ! -a "${ENVOY_FILTER_EXAMPLE_SRCDIR}" ]] then - git clone https://github.com/lyft/envoy-filter-example.git "${ENVOY_FILTER_EXAMPLE_SRCDIR}" + git clone https://github.com/envoyproxy/envoy-filter-example.git "${ENVOY_FILTER_EXAMPLE_SRCDIR}" fi -# This is the hash on https://github.com/lyft/envoy-filter-example.git we pin to. +# This is the hash on https://github.com/envoyproxy/envoy-filter-example.git we pin to. (cd "${ENVOY_FILTER_EXAMPLE_SRCDIR}" && git fetch origin && git checkout b904b8ce9cabafb485e6b6fae1d0fd9e33ddfcc1) cp -f "${ENVOY_SRCDIR}"/ci/WORKSPACE.filter.example "${ENVOY_FILTER_EXAMPLE_SRCDIR}"/WORKSPACE diff --git a/docs/extending/extending.rst b/docs/extending/extending.rst index 2016c24b2eb4..8a6f4e22ced3 100644 --- a/docs/extending/extending.rst +++ b/docs/extending/extending.rst @@ -7,4 +7,4 @@ The Envoy architecture makes it fairly easily extensible via both :ref:`network ` and :ref:`HTTP filters `. An example of how to add a network filter and structure the repository and build dependencies can -be found at `envoy-filter-example `_. +be found at `envoy-filter-example `_. diff --git a/docs/install/sandboxes/grpc_bridge.rst b/docs/install/sandboxes/grpc_bridge.rst index 75e156c7d674..09798b3e1291 100644 --- a/docs/install/sandboxes/grpc_bridge.rst +++ b/docs/install/sandboxes/grpc_bridge.rst @@ -26,7 +26,7 @@ To build the Go gRPC service run:: $ script/bootstrap $ script/build -Note: ``build`` requires that your Envoy codebase (or a working copy thereof) is in ``$GOPATH/src/github.com/lyft/envoy``. +Note: ``build`` requires that your Envoy codebase (or a working copy thereof) is in ``$GOPATH/src/github.com/envoyproxy/envoy``. Docker compose ~~~~~~~~~~~~~~