Skip to content
Connect, secure, control, and observe services.
Go Shell Makefile Smarty HTML Python
Branch: master
Clone or download
howardjohn bump all dependencies (#20770)
* bump all dependencies

* update goldens
Latest commit d6b0da8 Feb 3, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Update bug_report.md (#18919) Nov 14, 2019
bin fix crd update script (#20681) Jan 30, 2020
common-protos Release 1 5 common files update (#20394) Jan 22, 2020
common Automator: update common-files@master in istio/istio@master (#20735) Jan 31, 2020
docker Remove istiod dockerfile to prevent confusion (#20726) Jan 31, 2020
galley enable galley race tests (#20658) Jan 31, 2020
install bump all dependencies (#20770) Feb 3, 2020
istioctl Look beyond first listener filter to determine type (#20739) Feb 3, 2020
licenses bump all dependencies (#20770) Feb 3, 2020
manifests bump all dependencies (#20770) Feb 3, 2020
mixer bump all dependencies (#20770) Feb 3, 2020
operator bump all dependencies (#20770) Feb 3, 2020
pilot dedupe target ports while creating service instances for k8s (#20642) Feb 3, 2020
pkg Removes SSE artifacts that are used by Pilot (#20704) Jan 31, 2020
prow bump all dependencies (#20770) Feb 3, 2020
release Do not download non released (ie, alpha, beta, rc) versions (#19047) Nov 18, 2019
samples Fix for wait_for_gateway (#20599) Feb 3, 2020
security Fix API calls for token exchange (#20753) Feb 3, 2020
sidecar-injector Support run as non-root for pilot/galley/mixer/sidecar-injection/cita… Oct 17, 2019
tests Add retry around flaky mtls apply (#20789) Feb 3, 2020
tools Remove Dockerfile.proxytproxy (#19670) Jan 29, 2020
.codecov.yml Include js/css files into static folder (#12983) Apr 15, 2019
.gitattributes Hide operator's golden test data changes in pull requests by default (#… Jan 29, 2020
.gitignore Enablement of BUILD_WITH_CONTAINER for Istio repository (#19322) Dec 20, 2019
BUGS-AND-FEATURE-REQUESTS.md Update common files. (#14914) Jun 17, 2019
CODEOWNERS remove @istio/wg-config-maintainers from CODEOWNERS (#20619) Jan 28, 2020
CONTRIBUTING.md Import common files in this repo. (#219) May 31, 2019
LICENSE Automator: update common-files@master in istio/istio@master (#20379) Jan 30, 2020
Makefile Automator: update common-files@master in istio/istio@master (#20735) Jan 31, 2020
Makefile.core.mk Generate operator protos (#20759) Feb 1, 2020
Makefile.overrides.mk Place istio/istio on BUILD_WITH_CONTAINER=1 plan (#19937) Feb 3, 2020
README.md Remove unused badges (#19199) Nov 25, 2019
SUPPORT.md Update common files. (#16989) Sep 11, 2019
codecov.skip Remove hyperistio (#19772) Dec 24, 2019
codecov.threshold Use random seeds for jitter in node agent and update test coverage th… Oct 7, 2019
go.mod bump all dependencies (#20770) Feb 3, 2020
go.sum bump all dependencies (#20770) Feb 3, 2020
istio.deps bump all dependencies (#20770) Feb 3, 2020

README.md

Go Report Card GoDoc

Istio

An open platform to connect, manage, and secure microservices.

  • For in-depth information about how to use Istio, visit istio.io
  • To ask questions and get assistance from our community, visit discuss.istio.io
  • To learn how to participate in our overall community, visit our community page

In this README:

In addition, here are some other documents you may wish to read:

You'll find many other useful documents on our Wiki.

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.

Istio is composed of these components:

  • Envoy - Sidecar proxies 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 authorization, rate limits, quotas, authentication, request tracing and telemetry collection.

  • Pilot - A component responsible for configuring the proxies at runtime.

  • Citadel - A centralized component responsible for certificate issuance and rotation.

  • Citadel Agent - A per-node component responsible for certificate issuance and rotation.

  • Galley- Central component for validating, ingesting, aggregating, transforming and distributing config within Istio.

Istio currently supports Kubernetes and Consul-based environments. We plan support for additional platforms such as Cloud Foundry, and Mesos in the near future.

Repositories

The Istio project is divided across a few GitHub repositories.

  • istio/istio. This is the main repository that you are currently looking at. It hosts Istio's core components and also the sample programs and the various documents that govern the Istio open source project. It includes:

    • security. This directory contains security related code, including Citadel (acting as Certificate Authority), citadel agent, etc.

    • pilot. This directory 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.

    • istioctl. This directory contains code for the istioctl command line utility.

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

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

  • 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 Mixer.

Issue management

We use GitHub combined with ZenHub to track all of our bugs and feature requests. Each issue we track has a variety of metadata:

  • Epic. An epic represents a feature area for Istio as a whole. Epics are fairly broad in scope and are basically product-level things. Each issue is ultimately part of an epic.

  • Milestone. Each issue is assigned a milestone. This is 0.1, 0.2, ..., or 'Nebulous Future'. The milestone indicates when we think the issue should get addressed.

  • Priority/Pipeline. Each issue has a priority which is represented by the Pipeline field within GitHub. Priority can be one of P0, P1, P2, or >P2. The priority indicates how important it is to address the issue within the milestone. P0 says that the milestone cannot be considered achieved if the issue isn't resolved.

We don't annotate issues with Releases; Milestones are used instead. We don't use GitHub projects at all, that support is disabled for our organization.

You can’t perform that action at this time.