Skip to content

Latest commit

 

History

History
102 lines (75 loc) · 4.25 KB

README.md

File metadata and controls

102 lines (75 loc) · 4.25 KB

Istio

A service mesh for polyglot microservices.

Introduction

Istio is an open platform for providing a uniform way to integrate microservices, manage traffic flow across microservices, enforce policies and aggregate telemetry data. Istio's control plane provides an abstraction layer over the underlying cluster management platform, such as Kubernetes, Mesos, etc.

Istio is composed of three main components:

  • Proxy - Sidecars per microservice to handle ingress/egress traffic between services in the cluster and from a service to external services. The proxies form a secure microservice mesh providing a rich set of functions like discovery, rich layer-7 routing, circuit breakers, policy enforcement and telemetry recording/reporting functions.

    Note: The service mesh is not an overlay network. It simplifies and enhances how microservices in an application talk to each other over the network provided by the underlying platform.

  • Mixer - Central component that is leveraged by the proxies and microservices to enforce policies such as ACLs, rate limits, quotas, authentication, request tracing and telemetry collection.

  • Manager - A component responsible for configuring the proxies and the mixer at runtime.

A high-level overview of Istio's components is available here. Istio currently only supports the Kubernetes platform, although we plan support for additional platforms such as CloudFoundry, and Mesos in the near future. See the getting started tutorial for more information on using Istio in your Kubernetes deployments.

Installation

Please refer to INSTALL.md for detailed steps.

Repositories

The Istio project is divided across multiple GitHub repositories. Each repository contains information about how to build and test it.

  • istio/api. This repository defines component-level APIs and common configuration formats for the Istio platform.

  • istio/istio. This is the main Istio repo (the one you are currently looking at). It hosts the high-level documentation for the project, along with tutorials and two demo applications: a basic echo app and a slightly more advanced polyglot application.

  • istio/manager. This repository contains platform-specific code to populate the abstract service model, dynamically reconfigure the proxies when the application topology changes, as well as translate routing rules into proxy specific configuration. The istioctl command line utility is also available in this repository.

  • istio/mixer. This repository contains code to enforce various policies for traffic passing through the proxies, and collect telemetry data from proxies and microservices. There are plugins for interfacing with various cloud platforms, policy management services, and monitoring services.

  • istio/mixerclient. Client libraries for the mixer API.

  • istio/proxy. The Istio proxy contains extensions to the Envoy proxy (in the form of Envoy filters), that allow the proxy to delegate policy enforcement decisions to the mixer.

Contributing to the project

See the contribution guidelines for information on how to participate in the Istio project by submitting pull requests or issues.

Community and support

There are several communication channels available:

and of course use GitHub issues to report bugs or problems to the team: