The Istio proxy components.
Go to file
Joshua Blatt f95f8530df
Revert "implement upstream secure bit (#2133)" (#2135)
This reverts commit d857bdd02a.
2019-03-01 16:34:55 -08:00
.circleci Update Envoy SHA to latest with deterministic hash (release-1.1). (#2109) 2019-02-11 18:35:05 -08:00
.github
include/istio Revert "implement upstream secure bit (#2133)" (#2135) 2019-03-01 16:34:55 -08:00
prow Merge master into release-1.1 (#2031) 2018-11-08 14:43:17 -05:00
script Update Envoy SHA to latest with deterministic hash (release-1.1). (#2109) 2019-02-11 18:35:05 -08:00
src Revert "implement upstream secure bit (#2133)" (#2135) 2019-03-01 16:34:55 -08:00
test Deflake macos MixerFaultTest by broadening assertion ranges. (#2126) 2019-02-28 21:59:54 -08:00
tools move tool/bazel.rc to .bazelrc (#1998) 2018-10-17 16:30:45 -07:00
.bazelrc Update Envoy SHA to latest with deterministic hash (release-1.1). (#2109) 2019-02-11 18:35:05 -08:00
.drone.yml
.gitignore
.travis.yml
BUILD Update dependencies and fix compile errors. (#1993) 2018-10-17 15:54:45 -07:00
CONTRIBUTING.md fixed broken links to dev guide and contribution guide (#1913) 2018-08-14 11:45:42 -04:00
LICENSE
Makefile Add retries to policy checks on failed transport error (#2113) 2019-02-19 11:59:20 -08:00
OWNERS Add Joshua into proxy OWNER (#2121) 2019-02-19 14:52:26 -08:00
README.md
WORKSPACE Update Envoy SHA to latest with deterministic hash (release-1.1). (#2109) 2019-02-11 18:35:05 -08:00
cc_gogo_protobuf.bzl Merge master to release-1.1 (#2038) 2018-11-14 12:49:00 -08:00
googleapis.bzl Merge master to release-1.1 (#2038) 2018-11-14 12:49:00 -08:00
istio.deps API sha for proxy (#2136) 2019-03-01 16:18:38 -08:00
protobuf.bzl Update Envoy SHA to latest with protobuf.Any configs (release-1.1). (#2082) 2019-01-16 16:05:50 -08:00
repositories.bzl API sha for proxy (#2136) 2019-03-01 16:18:38 -08:00
x_tools_imports.bzl Merge master to release-1.1 (#2038) 2018-11-14 12:49:00 -08:00

README.md

Istio Proxy

The Istio Proxy is a microservice proxy that can be used on the client and server side, and forms a microservice mesh. The Proxy supports a large number of features.

Client Side Features:

  • Discovery & Load Balancing. The Proxy can use several standard service discovery and load balancing APIs to efficiently distribute traffic to services.

  • Credential Injection. The Proxy can inject client identity, either through connection tunneling or protocol-specific mechanisms such as JWT tokens for HTTP requests.

  • Connection Management. The Proxy manages connections to services, handling health checking, retry, failover, and flow control.

  • Monitoring & Logging. The Proxy can report client-side metrics and logs to the Mixer.

Server Side Features:

  • Rate Limiting & Flow Control. The Proxy can prevent overload of backend systems and provide client-aware rate limiting.

  • Protocol Translation. The Proxy is a gRPC gateway, providing translation between JSON-REST and gRPC.

  • Authentication & Authorization. The Proxy supports multiple authentication mechanisms, and can use the client identities to perform authorization checks through the Mixer.

  • Monitoring & Logging. The Proxy can report server-side metrics and logs to the Mixer.

Please see istio.io to learn about the overall Istio project and how to get in touch with us. To learn how you can contribute to any of the Istio components, including the proxy, please see the Istio contribution guidelines.