matcher: add PathMatcher and use in routing, jwt and rbac#147
Merged
kyessenov merged 2 commits intorelease-1.5from Feb 13, 2020
Merged
matcher: add PathMatcher and use in routing, jwt and rbac#147kyessenov merged 2 commits intorelease-1.5from
kyessenov merged 2 commits intorelease-1.5from
Conversation
16ef901 to
3cc27e3
Compare
Cherrypick envoyproxy#10010 Signed-off-by: Yangmin Zhu <ymzhu@google.com>
3cc27e3 to
c1ef20c
Compare
kyessenov
reviewed
Feb 13, 2020
| @@ -1 +1 @@ | |||
| 1.13.0 | |||
| 1.13.1-dev | |||
Author
There was a problem hiding this comment.
I pulled the changes from envoyproxy#10025 manually. I can revert this if it's not needed.
|
Hey, can you fix Wasm tests please? It is from a previous merge, and we didn't test it all. Just change from |
Author
Done, I'm running the test locally again. |
Author
All tests passed except the following one, should be unrelated to this PR. |
brian-avery
pushed a commit
that referenced
this pull request
Jun 30, 2020
Signed-off-by: Tony Allen <tony@allen.gg>
fpesce
pushed a commit
that referenced
this pull request
Jun 30, 2020
This patch adds support for global accepted connection limits. May be configured simultaneously with per-listener connection limits and enforced separately. If the global limit is unconfigured, Envoy will emit a warning during start-up. Global downstream connection count tracking (across all listeners and threads) is performed by the network listener implementation upon acceptance of a socket. The mapping of active socket objects to the actual accepted downstream sockets is assumed to remain bijective. Given that characteristic, the connection counts are tied to the lifetime of the objects. Signed-off-by: Tony Allen <tony@allen.gg> Signed-off-by: Dmitri Dolguikh <ddolguik@redhat.com>
brian-avery
pushed a commit
that referenced
this pull request
Jun 30, 2020
This patch adds support for global accepted connection limits. May be configured simultaneously with per-listener connection limits and enforced separately. If the global limit is unconfigured, Envoy will emit a warning during start-up. Global downstream connection count tracking (across all listeners and threads) is performed by the network listener implementation upon acceptance of a socket. The mapping of active socket objects to the actual accepted downstream sockets is assumed to remain bijective. Given that characteristic, the connection counts are tied to the lifetime of the objects. Signed-off-by: Tony Allen <tony@allen.gg> Signed-off-by: Dmitri Dolguikh <ddolguik@redhat.com>
jplevyak
pushed a commit
that referenced
this pull request
Jul 9, 2020
Signed-off-by: Tony Allen <tony@allen.gg>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cherrypick envoyproxy#10010
This PR also includes the upstream PR: envoyproxy#10025 for corresponding changes to VERSION and version_history.rst.
I ran
./ci/run_envoy_docker.sh './ci/do_ci.sh bazel.dev'locally, the RBAC and JWT tests are all passing. There are some unrelated errors in the wasm:Signed-off-by: Yangmin Zhu ymzhu@google.com