Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The Illustrated Children’s Guide to Istio

nwiizo
July 06, 2019

The Illustrated Children’s Guide to Istio

「Battle Conference Under30」 登壇資料
https://bcu30.jp/2019/

The Illustrated Children’s Guide to Istio
https://bcu30.jp/2019/booth/gmo/
The Illustrated Children’s Guide to Istioと題してMicroServicesやServiceMesh、Istioに関しての概念や使い方に関する紙芝居を行います。ぜひ、皆さん上演時間外で質問も受け付けますのでお立ち寄りください。このブースはソフトウェアエンジニアリングを子供たちに説明しようとするすべての親に捧げます。

nwiizo

July 06, 2019
Tweet

More Decks by nwiizo

Other Decks in Technology

Transcript

  1. side-car proxy • A sidecar proxy is an application design

    pattern which abstracts certain features, such as inter- service communications, monitoring and security, away from the main architecture to ease the tracking and maintenance of the application as a whole.
  2. Controller Plane • Provides policy and configuration for services in

    the mesh. • Takes a set of isolated stateless sidecar proxies and turns them into a service mesh. • Does not touch any packets/requests in the system.
  3. Data Plane • touches every packet/request in the system. •

    is responsible for service discovery, health checking, routing, load balancing, authentication, authorization, and observability.
  4. • Kubernetes has used an Ingress controller to handle the

    traffic that enters the cluster from the outside. • Istio has replaced the familiar Ingress resource with new Gateway and VirtualServices resources.