SlideShare a Scribd company logo
Copyright © SELA Software & Education Labs, Ltd. | 14-18 Baruch Hirsch St., Bnei Brak 51202, Israel | www.selagroup.com
December 27, 30-31,
2018
SELA DEVELOPER
PRACTICE
Ofir Makmal | CTO | Sela Group
ofirm@sela.co.il
+
Kubernetes and Istio
A Service Mesh platform
Ku·ber·ne·tes
Kubernetes can be many things… Its a scalable, self-healing and resilient
● Container orchestration engine
● Cluster management system
● Mesos, Swarm, Rancher, _______ replacement
● Microservices, CI/CD, Machine Learning platforms
● Portable ‘cloud’
But, It’s NOT just another way to run containers...
2
The Kubernetes Journey
Recent surveys from from CNCF shows that over 83% of the companies that
are using containers are using Kubernetes
July 2018
It has a huge community:
● ~36K Stars
● ~1600 Contributors!
● ~13K Forks
● ~1000 Pending pull requests!
3
High Level Architecture
© Copyright SELA Software & Education Labs Ltd. | 14-18 Baruch Hirsch St Bnei Brak, 51202 Israel | www.selagroup.com | DevOps Course - Kubernetes Introduction
5
Azure Kubernetes Service (AKS)
● Fully managed Kubernetes cluster
● Set up master and nodes
● One-Click scale and upgrade operations
● Built-in secured dashboard
● Support Block and CIFS volumes on Azure
● Support for GPU workloads
● Fully integrated with Azure Monitor and Log Analytics
Also, fully integrated with Azure DevOps
6
Azure DevOps
● Full-blown Git Repos
● Issues and Tasks boards
● Pipelines support
○ Thousands of steps extensions
● Build on Windows, Linux and Mac!
● Release on Windows, Linux and Mac!
● Manage test plans and load tests
● Built-in Private package managers
○ Private NPM, Nuget, Maven, Gradle, PIP
○ Similar to JFrog Artifactory, Nexus
● Managed from your Azure Account
7
Demo
Creating an AKS Cluster
Azure DevOps
Kubectl, walkthrough
We all know
Kubernetes
Building Blocks
And we all know how to run an application...
Creating a Namespace, defining a Deployment to manage a
ReplicaSet of Pods, exposing them as Services and Ingress, maybe
mounting Persistent Volumes into their containers, injecting
ConfigMaps and Secrets as environment variables.
After deployment, we expect that Kubernetes will take care the rest.
10
Deployment Architecture
© Copyright SELA Software & Education Labs Ltd. | 14-18 Baruch Hirsch St Bnei Brak, 51202 Israel | www.selagroup.com | DevOps Course - Kubernetes Introduction
Micro-services applications
are not that simple.
12
Back to basics
’Micro-services is a software development technique—[…] that
structures an application as a collection of loosely coupled services.
In a microservices architecture, services are fine-grained and the
protocols are lightweight. The benefit of decomposing an
application into different smaller services is that it improves
modularity and makes the application easier to understand,
develop, test, and more resilient to architecture erosion. It also
parallelizes development by enabling small autonomous teams to
develop, deploy and scale independently. […] Microservices-based
architectures enable continuous delivery and deployment.’
* Wikipedia
Micro-services 101
• Small – do one thing and do it well
• Simple!
• Has clear domain boundaries and well-defined API’s
• Standalone
• Independent development
• Independent deployment
• Build and release is automatic
• Testable
• Loosely coupled
With simplicity, comes complexity ®
• How to deploy or update services with zero-downtime?
• How to A/B test the application?
• How to handle network failures?
• How to manage security between services?
• How to handle timeouts? Retries?
• How to rate limit? Add quotas?
• Telemetry, Logging, Monitoring?
• What about Polyglot, Legacy systems?
• Different Tech Stacks
We used to do this ourself
• Integrating services and libraries for the following:
• Eureka - Service Registry
• Ribbon - Client Side Load Balancing
• Hystrix - Circuit Breaker
• Zipkin - Distributed Tracing
• Prometheus - Monitoring
• Grafana - Dashboards and Visualization
• Nginx - API Gateway
• Many of them requires complicated code in our API libraries
The rise of Service Mesh
• Managing a horde of Microservices yourself is too hard
• Service Meshes are taking care of all communication
and policies needs between services and allows
extensibility by middlewares
• Istio, Linkerd, Conduit – are all different approaches to
Service Mesh
Introducing Istio
• Initiative from Google, IBM and Lyft
• Built for Kubernetes
• But also supports – Nomad, Consul, and in the future will support Cloud
Foundry and Mesos
• A uniform way to connect, manage and secure Micro-services:
• Advanced Load-Balancing for TCP, HTTP, gRPC, and Web Sockets
• Rule-based Traffic Control
• Advanced policies – ACL’s, Mutual-TLS, Rotating Certificates, Rate-
limits, etc..
• Automatic metrics, logs, traces collection
• IstioCtl – like KubeCtl, only for Istio (we can actually use KubeCtl most
of the time)
Kubernetes And Istio and Azure AKS DevOps
Control Plane vs Data Plane
• Control Plane
• Abstract platform specific capabilities
• Provide cluster wide Rules Api for Routing
• Propagate Policy and Configuration
• Manages data plan
• Data Plane
• Service Discovery
• Routing
• Load Balancing
• Authentication and Authorization
• Health Checking
• Observability
Envoy
• Originally built at Lyft
• Now a CNCF Graduate
• A C++ based L4/L7 proxy
• Battle-tested with great performance
• Acts as the smart Data-Plane managed by Istio
• Many built-in mechanism used by Istio
• API Driven updates (without hot-reload)
• In recent versions being injected as a side-car
Pilot – Discovery and Traffic management
• Manages the lifecycle of Envoy instances deployed across Istio
• Intelligent Router
• Handle timeouts, retries
• Implement Circuit-Breaker
• Allows A/B testing
• Sophisticated Deployments
Mixer
• Manages Access Control and Policies
• Extract request attributes
• Collects Telemetry and metrics
• Tracing & Metric backend can be changed at runtime (Prometheus, InfluxDB,
StackDriver, etc..)
Citadel
• Service-to-service authentication and Mutual TLS
• Supports RBAC (Role-Based Access Control) - like Kubernetes
• Automatically manages credentials and certificates
BookInfo
Built-in Addons
• Prometheus & Grafana
• Out-of-the-box cluster-wide metric-collection, and support for alert’s
manager
• Fully customizable dashboards using Grafana
• Service Graph
• For Observability
• Open Tracing
• Vendor-neutral APIs and instrumentation for distributed tracing
• Jaeger or Zipkin
Demo
Demo Application – Simple BookApp
Platform observability, monitoring, and tracing
Istio has Building
Blocks too
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: reviews
spec:
hosts:
- reviews
http:
- route:
- destination:
host: reviews
subset: v1
VirtualService
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: reviews
spec:
host: reviews
subsets:
- name: v1
labels:
version: v1
- name: v2
labels:
version: v2
DestinationRule
Intelligent Routing Capabilities
• Request Routing
• Manage multiple environments (dev, test, prod) and multiple versions (vX, vY)
at the same time while configuring sophisticated rules based-on Uri, Headers
and more.
• Implement Weight-based version routing
• Allows A/B testing and Canary Deployments
• Handle Ingress and Egress routing rules and gateways
• Warm-up services with request mirroring
• Load Balancing
• Handle service-registration and service-discovery
• Advanced Algorithms
• Weighted round robin, Weighted least request, Ring-Hash, Maglev, Random, Orig-
Destination
• Zone-awareness, priorities and more
Failure Handling
• Timeouts and Deadlines
• Following request journey in the Service Mesh
• Supports per-request configuration
• Retries
• Supports variable jitter between retries
• Rate-limiting and Quotas
• Connection limits, requests throttling
• Circuit-Breaker
• Help getting failed services back to shape after subsequent failures (fully
configurable)
Fault Injection
• Allows to test the failure handling mechanism
• Enables granular Chaos testing (i.e Netflix’s Chaos Monkey)
• Introduce latency to specific services or users
• Inject statistical errors to requests
Demo
Traffic Shifting
Faults Injection
Recap
• Istio introduces unparalleled support for the unique challenges that
comes with Micro-services
• Istio is vendor-agnostic, and supports both on-prem and cloud
deployments
• Istio is now stable for GA and considered production ready.
• v0.8+ Includes major API changes (VirtualService, DestinationRule)
Questions
Ofir Makmal
ofirm@sela.co.il

More Related Content

What's hot (20)

PDF
Kubernetes 101
Crevise Technologies
 
PDF
DPDK in Containers Hands-on Lab
Michelle Holley
 
PPTX
Kubernetes PPT.pptx
ssuser0cc9131
 
PPTX
Kubernetes
Henry He
 
PDF
resume-theorique-m204-v1-0-62f6e87c9c457 (1).pdf
FootballLovers9
 
PPTX
Kubernetes Networking 101
Weaveworks
 
PDF
Processing IoT Data from End to End with MQTT and Apache Kafka
confluent
 
PDF
Kubernetes security
Thomas Fricke
 
PDF
Kubernetes Concepts And Architecture Powerpoint Presentation Slides
SlideTeam
 
PPTX
Kubernetes Workshop
loodse
 
PDF
cilium-public.pdf
Sanjeev Rampal
 
PDF
Gitops Hands On
Brice Fernandes
 
PPTX
Understanding Storage I/O Under Load
ScyllaDB
 
PDF
Kubernetes 101 for_penetration_testers_-_null_mumbai
n|u - The Open Security Community
 
PDF
Docker internals
Rohit Jnagal
 
PPTX
Introduction au Software Defined Networking (SDN)
Edouard DEBERDT
 
PPTX
Rancher and Kubernetes Best Practices
Avinash Patil
 
PPTX
Kubernetes presentation
GauranG Bajpai
 
PDF
Getting Started with Kubernetes
VMware Tanzu
 
PDF
VXLAN BGP EVPN: Technology Building Blocks
APNIC
 
Kubernetes 101
Crevise Technologies
 
DPDK in Containers Hands-on Lab
Michelle Holley
 
Kubernetes PPT.pptx
ssuser0cc9131
 
Kubernetes
Henry He
 
resume-theorique-m204-v1-0-62f6e87c9c457 (1).pdf
FootballLovers9
 
Kubernetes Networking 101
Weaveworks
 
Processing IoT Data from End to End with MQTT and Apache Kafka
confluent
 
Kubernetes security
Thomas Fricke
 
Kubernetes Concepts And Architecture Powerpoint Presentation Slides
SlideTeam
 
Kubernetes Workshop
loodse
 
cilium-public.pdf
Sanjeev Rampal
 
Gitops Hands On
Brice Fernandes
 
Understanding Storage I/O Under Load
ScyllaDB
 
Kubernetes 101 for_penetration_testers_-_null_mumbai
n|u - The Open Security Community
 
Docker internals
Rohit Jnagal
 
Introduction au Software Defined Networking (SDN)
Edouard DEBERDT
 
Rancher and Kubernetes Best Practices
Avinash Patil
 
Kubernetes presentation
GauranG Bajpai
 
Getting Started with Kubernetes
VMware Tanzu
 
VXLAN BGP EVPN: Technology Building Blocks
APNIC
 

Similar to Kubernetes And Istio and Azure AKS DevOps (20)

PDF
Istio Up Running Using a Service Mesh to Connect Secure Control and Observe 1...
kecketatyz
 
PDF
Introduction to Istio on Kubernetes
Jonh Wendell
 
PDF
Introduction-to-Service-Mesh-with-Istio-and-Kiali-OSS-Japan-July-2019.pdf
TinaCondrache1
 
PDF
Introduction-to-Service-Mesh-with-Istio-and-Kiali-OSS-Japan-July-2019.pdf
ALVAROEMMANUELSOCOPP
 
PPTX
Istio Mesh – Managing Container Deployments at Scale
Mofizur Rahman
 
PPTX
Manging Container Deployments at Scale
Mofizur Rahman
 
PPTX
Hybrid cloud openstack meetup
dfilppi
 
PPTX
Anton Grishko "Multi-cloud with Google Anthos, Kubernetes and Istio. How to s...
Fwdays
 
PPTX
Navigating the service mesh landscape with Istio, Consul Connect, and Linkerd
Christian Posta
 
PDF
Introduction to Istio Service Mesh
Georgios Andrianakis
 
PPTX
Do You Need A Service Mesh?
NGINX, Inc.
 
PDF
[WSO2Con Asia 2018] Architecting for Container-native Environments
WSO2
 
PDF
From CoreOS to Kubernetes and Concourse CI
Denis Izmaylov
 
PPTX
Service-mesh options with Linkerd, Consul, Istio and AWS AppMesh
Christian Posta
 
PDF
What next after microservices
Bilgin Ibryam
 
PDF
Docker microservices and the service mesh
Docker, Inc.
 
PDF
Putting Microservices on a Diet: with Istio!
QAware GmbH
 
PDF
Putting microservices on a diet with Istio
QAware GmbH
 
PDF
Managing Microservices With The Istio Service Mesh on Kubernetes
Iftach Schonbaum
 
PPTX
Kubernetes Ingress to Service Mesh (and beyond!)
Christian Posta
 
Istio Up Running Using a Service Mesh to Connect Secure Control and Observe 1...
kecketatyz
 
Introduction to Istio on Kubernetes
Jonh Wendell
 
Introduction-to-Service-Mesh-with-Istio-and-Kiali-OSS-Japan-July-2019.pdf
TinaCondrache1
 
Introduction-to-Service-Mesh-with-Istio-and-Kiali-OSS-Japan-July-2019.pdf
ALVAROEMMANUELSOCOPP
 
Istio Mesh – Managing Container Deployments at Scale
Mofizur Rahman
 
Manging Container Deployments at Scale
Mofizur Rahman
 
Hybrid cloud openstack meetup
dfilppi
 
Anton Grishko "Multi-cloud with Google Anthos, Kubernetes and Istio. How to s...
Fwdays
 
Navigating the service mesh landscape with Istio, Consul Connect, and Linkerd
Christian Posta
 
Introduction to Istio Service Mesh
Georgios Andrianakis
 
Do You Need A Service Mesh?
NGINX, Inc.
 
[WSO2Con Asia 2018] Architecting for Container-native Environments
WSO2
 
From CoreOS to Kubernetes and Concourse CI
Denis Izmaylov
 
Service-mesh options with Linkerd, Consul, Istio and AWS AppMesh
Christian Posta
 
What next after microservices
Bilgin Ibryam
 
Docker microservices and the service mesh
Docker, Inc.
 
Putting Microservices on a Diet: with Istio!
QAware GmbH
 
Putting microservices on a diet with Istio
QAware GmbH
 
Managing Microservices With The Istio Service Mesh on Kubernetes
Iftach Schonbaum
 
Kubernetes Ingress to Service Mesh (and beyond!)
Christian Posta
 
Ad

Recently uploaded (20)

PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Advancing WebDriver BiDi support in WebKit
Igalia
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Advancing WebDriver BiDi support in WebKit
Igalia
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
July Patch Tuesday
Ivanti
 
Biography of Daniel Podor.pdf
Daniel Podor
 
Ad

Kubernetes And Istio and Azure AKS DevOps

  • 1. Copyright © SELA Software & Education Labs, Ltd. | 14-18 Baruch Hirsch St., Bnei Brak 51202, Israel | www.selagroup.com December 27, 30-31, 2018 SELA DEVELOPER PRACTICE Ofir Makmal | CTO | Sela Group [email protected] + Kubernetes and Istio A Service Mesh platform
  • 2. Ku·ber·ne·tes Kubernetes can be many things… Its a scalable, self-healing and resilient ● Container orchestration engine ● Cluster management system ● Mesos, Swarm, Rancher, _______ replacement ● Microservices, CI/CD, Machine Learning platforms ● Portable ‘cloud’ But, It’s NOT just another way to run containers... 2
  • 3. The Kubernetes Journey Recent surveys from from CNCF shows that over 83% of the companies that are using containers are using Kubernetes July 2018 It has a huge community: ● ~36K Stars ● ~1600 Contributors! ● ~13K Forks ● ~1000 Pending pull requests! 3
  • 4. High Level Architecture © Copyright SELA Software & Education Labs Ltd. | 14-18 Baruch Hirsch St Bnei Brak, 51202 Israel | www.selagroup.com | DevOps Course - Kubernetes Introduction
  • 5. 5
  • 6. Azure Kubernetes Service (AKS) ● Fully managed Kubernetes cluster ● Set up master and nodes ● One-Click scale and upgrade operations ● Built-in secured dashboard ● Support Block and CIFS volumes on Azure ● Support for GPU workloads ● Fully integrated with Azure Monitor and Log Analytics Also, fully integrated with Azure DevOps 6
  • 7. Azure DevOps ● Full-blown Git Repos ● Issues and Tasks boards ● Pipelines support ○ Thousands of steps extensions ● Build on Windows, Linux and Mac! ● Release on Windows, Linux and Mac! ● Manage test plans and load tests ● Built-in Private package managers ○ Private NPM, Nuget, Maven, Gradle, PIP ○ Similar to JFrog Artifactory, Nexus ● Managed from your Azure Account 7
  • 8. Demo Creating an AKS Cluster Azure DevOps Kubectl, walkthrough
  • 10. And we all know how to run an application... Creating a Namespace, defining a Deployment to manage a ReplicaSet of Pods, exposing them as Services and Ingress, maybe mounting Persistent Volumes into their containers, injecting ConfigMaps and Secrets as environment variables. After deployment, we expect that Kubernetes will take care the rest. 10
  • 11. Deployment Architecture © Copyright SELA Software & Education Labs Ltd. | 14-18 Baruch Hirsch St Bnei Brak, 51202 Israel | www.selagroup.com | DevOps Course - Kubernetes Introduction
  • 13. Back to basics ’Micro-services is a software development technique—[…] that structures an application as a collection of loosely coupled services. In a microservices architecture, services are fine-grained and the protocols are lightweight. The benefit of decomposing an application into different smaller services is that it improves modularity and makes the application easier to understand, develop, test, and more resilient to architecture erosion. It also parallelizes development by enabling small autonomous teams to develop, deploy and scale independently. […] Microservices-based architectures enable continuous delivery and deployment.’ * Wikipedia
  • 14. Micro-services 101 • Small – do one thing and do it well • Simple! • Has clear domain boundaries and well-defined API’s • Standalone • Independent development • Independent deployment • Build and release is automatic • Testable • Loosely coupled
  • 15. With simplicity, comes complexity ® • How to deploy or update services with zero-downtime? • How to A/B test the application? • How to handle network failures? • How to manage security between services? • How to handle timeouts? Retries? • How to rate limit? Add quotas? • Telemetry, Logging, Monitoring? • What about Polyglot, Legacy systems? • Different Tech Stacks
  • 16. We used to do this ourself • Integrating services and libraries for the following: • Eureka - Service Registry • Ribbon - Client Side Load Balancing • Hystrix - Circuit Breaker • Zipkin - Distributed Tracing • Prometheus - Monitoring • Grafana - Dashboards and Visualization • Nginx - API Gateway • Many of them requires complicated code in our API libraries
  • 17. The rise of Service Mesh • Managing a horde of Microservices yourself is too hard • Service Meshes are taking care of all communication and policies needs between services and allows extensibility by middlewares • Istio, Linkerd, Conduit – are all different approaches to Service Mesh
  • 18. Introducing Istio • Initiative from Google, IBM and Lyft • Built for Kubernetes • But also supports – Nomad, Consul, and in the future will support Cloud Foundry and Mesos • A uniform way to connect, manage and secure Micro-services: • Advanced Load-Balancing for TCP, HTTP, gRPC, and Web Sockets • Rule-based Traffic Control • Advanced policies – ACL’s, Mutual-TLS, Rotating Certificates, Rate- limits, etc.. • Automatic metrics, logs, traces collection • IstioCtl – like KubeCtl, only for Istio (we can actually use KubeCtl most of the time)
  • 20. Control Plane vs Data Plane • Control Plane • Abstract platform specific capabilities • Provide cluster wide Rules Api for Routing • Propagate Policy and Configuration • Manages data plan • Data Plane • Service Discovery • Routing • Load Balancing • Authentication and Authorization • Health Checking • Observability
  • 21. Envoy • Originally built at Lyft • Now a CNCF Graduate • A C++ based L4/L7 proxy • Battle-tested with great performance • Acts as the smart Data-Plane managed by Istio • Many built-in mechanism used by Istio • API Driven updates (without hot-reload) • In recent versions being injected as a side-car
  • 22. Pilot – Discovery and Traffic management • Manages the lifecycle of Envoy instances deployed across Istio • Intelligent Router • Handle timeouts, retries • Implement Circuit-Breaker • Allows A/B testing • Sophisticated Deployments
  • 23. Mixer • Manages Access Control and Policies • Extract request attributes • Collects Telemetry and metrics • Tracing & Metric backend can be changed at runtime (Prometheus, InfluxDB, StackDriver, etc..) Citadel • Service-to-service authentication and Mutual TLS • Supports RBAC (Role-Based Access Control) - like Kubernetes • Automatically manages credentials and certificates
  • 25. Built-in Addons • Prometheus & Grafana • Out-of-the-box cluster-wide metric-collection, and support for alert’s manager • Fully customizable dashboards using Grafana • Service Graph • For Observability • Open Tracing • Vendor-neutral APIs and instrumentation for distributed tracing • Jaeger or Zipkin
  • 26. Demo Demo Application – Simple BookApp Platform observability, monitoring, and tracing
  • 28. apiVersion: networking.istio.io/v1alpha3 kind: VirtualService metadata: name: reviews spec: hosts: - reviews http: - route: - destination: host: reviews subset: v1 VirtualService
  • 29. apiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: reviews spec: host: reviews subsets: - name: v1 labels: version: v1 - name: v2 labels: version: v2 DestinationRule
  • 30. Intelligent Routing Capabilities • Request Routing • Manage multiple environments (dev, test, prod) and multiple versions (vX, vY) at the same time while configuring sophisticated rules based-on Uri, Headers and more. • Implement Weight-based version routing • Allows A/B testing and Canary Deployments • Handle Ingress and Egress routing rules and gateways • Warm-up services with request mirroring • Load Balancing • Handle service-registration and service-discovery • Advanced Algorithms • Weighted round robin, Weighted least request, Ring-Hash, Maglev, Random, Orig- Destination • Zone-awareness, priorities and more
  • 31. Failure Handling • Timeouts and Deadlines • Following request journey in the Service Mesh • Supports per-request configuration • Retries • Supports variable jitter between retries • Rate-limiting and Quotas • Connection limits, requests throttling • Circuit-Breaker • Help getting failed services back to shape after subsequent failures (fully configurable)
  • 32. Fault Injection • Allows to test the failure handling mechanism • Enables granular Chaos testing (i.e Netflix’s Chaos Monkey) • Introduce latency to specific services or users • Inject statistical errors to requests
  • 34. Recap • Istio introduces unparalleled support for the unique challenges that comes with Micro-services • Istio is vendor-agnostic, and supports both on-prem and cloud deployments • Istio is now stable for GA and considered production ready. • v0.8+ Includes major API changes (VirtualService, DestinationRule)