tra c routing with istio on oracle cloud
play

Trac Routing with Istio on Oracle Cloud Slides: - PowerPoint PPT Presentation

Trac Routing with Istio on Oracle Cloud Slides: https://slides.peterj.dev @pjausovec 1 / 43 Safe Harbor The following is intended to outline our general product direction. It is intended for information purposes only, and may not be


  1. Tra�c Routing with Istio on Oracle Cloud Slides: https://slides.peterj.dev @pjausovec 1 / 43

  2. Safe Harbor The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, coe, or functionality, and should not be relied upon in making purchasing decisions. The development, release, timing, and princing of any features or functionality described for Oracle's products may change and remains at the sole discretion of Oracle Corporation. Statements in this presentation relating to Oracle's future plans, expectations, beliefts, intentions and prospects are "forward-looking statements" and are subject to material risks and uncertainties. A detailed discussion of these factors and other risks that a�ect our business is contained in Oracle's Securities and Exchange Commission (SEC) �lings, including our most recent reports on Form 10-K and Form 10-Q under the heading "Risk Factors." These �lings are available on the SEC's website or on Oracle's website at http://www.oracle.com/investor. All information in this presentation is current as of September 2019 and Oracle undertakes no duty to update any statement in light of new information or future events.

  3. Introduction I am Peter (@pjausovec) Software Engineer at Oracle Working on "cloud-native" stu� Books: Cloud Native: Using Containers, Functions, and Data to Build Next-Gen Apps SharePoint Development VSTO For Dummies Courses: Kubernetes Course (https://startkubernetes.com) Istio Service Mesh Course (https://learnistio.com) 3 / 43

  4. Docker? @pjausovec 4 / 43

  5. Kubernetes? @pjausovec 5 / 43

  6. Service Mesh @pjausovec 6 / 43

  7. Dedicated infrastructure layer to connect connect, manage connect manage, and secure manage secure secure connect connect manage manage secure secure workloads by managing the communication between them @pjausovec 7 / 43

  8. Istio service mesh Open source service mesh Google, IBM, Lyft Well-de�ned API Can be deployed on-premise, in the cloud Kubernetes Mesos @pjausovec 8 / 43

  9. @pjausovec 9 / 43

  10. @pjausovec 10 / 43

  11. @pjausovec 11 / 43

  12. @pjausovec 12 / 43

  13. Source: https://barkpost.com/cute/sidecar-dogs/ 13 / 43

  14. Service Mesh - Architecture Data plane (proxies) Run next to each service instance (or one per host) Istio uses Envoy proxy Intercept all incoming/outgoing requests ( iptables ) Con�gure on how to handle tra�c Emits metric Control plane Validates rules Translates high-level rules to proxy con�guration Updates the proxies/con�guration Collects metrics from proxies @pjausovec 14 / 43

  15. Service Mesh - Features Connect Layer 7 routing and tra�c management %-based tra�c split (URIs, header, scheme, method, ...) Circuit breakers, timeouts and retries Manage Telemetry (proxies collect metrics automatically -> tools: Grafana, Jaeger, Kiali) Visibility into service communication without code changes Secure Secure communication between services (mutual TLS) Identity + cert for each service @pjausovec 15 / 43

  16. @pjausovec 16 / 43

  17. Tra�c Management @pjausovec 17 / 43

  18. @pjausovec 18 / 43

  19. @pjausovec 19 / 43

  20. @pjausovec 20 / 43

  21. Tra�c Management Scenarios Canary "5% of the tra�c should go to v2 and 95% of the tra�c to v1" A/B tests "Is User-Agent header == Firefox, direct tra�c to v2 version" "Any requests to URL /api/user should be redirected to /api/v1/user" "All GET requests to /api/v2 all POST requests to /api/v1" ... @pjausovec 21 / 43

  22. Tra�c Management Scenarios Ingress Gateway Route domains/subdomains to di�erent services https://hello.example.com → hello-svc https://blog.example.com → blog-svc https://other-domain.com → some-service Egress Gateway/Service Entry Control outgoing tra�c/external services Mirroring/Shadowing Duplicate incoming requests and send them to di�erent service @pjausovec 22 / 43

  23. Service Mesh - Istio Tra�c Management Resources Gateway VirtualService DestinationRule ServiceEntry Sidecar @pjausovec 23 / 43

  24. Service Mesh - Virtual Service 1 apiVersion: networking.istio.io/v1alpha3 2 kind: VirtualService 3 metadata: 4 name: serviceb-vs 5 spec: 6 hosts: 7 - service- b .default.svc.cluster.local 8 http: 9 - route: 10 - destination: 11 host: service- b .default.svc.cluster.local 12 subset: v1 13 weight: 98 14 - destination: 15 host: service- b .default.svc.cluster.local 16 subset: v2 17 weight: 2 @pjausovec 24 / 43

  25. Service Mesh - Destination Rule apiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: serviceb-dr spec: host: service-b.default.svc.cluster.local subsets: - name: v1 labels: version: v1 - name: v2 labels: version: v2 trafficPolicy: tls: mode: ISTIO_MUTUAL @pjausovec 25 / 43

  26. @pjausovec 26 / 43

  27. @pjausovec 27 / 43

  28. Destination rule 1 apiVersion : networking.istio.io/v1alpha3 2 kind : DestinationRule 3 metadata : 4 name : serviceb-dr 5 spec : 6 host : service-b.default.svc.cluster.local 7 subsets : 8 - name : v1 9 labels : 10 version : v1 11 - name : v2 12 labels : 13 version : v2 @pjausovec 28 / 43

  29. Virtual service 1 ... 2 http: 3 - route: 4 - destination: 5 host: service- b .default.svc.cluster.local 6 subset: v1 7 weight: 30 @pjausovec 29 / 43

  30. @pjausovec 30 / 43

  31. @pjausovec 31 / 43

  32. @pjausovec 32 / 43

  33. Service Mesh - Service Entry 1 apiVersion : networking.istio.io/v1alpha3 2 kind : ServiceEntry 3 metadata : 4 name : movie-db 5 spec : 6 hosts : 7 - api.themoviedb.org 8 ports : 9 - number : 443 10 name : https 11 protocol : HTTPS 12 resolution : DNS 13 location : MESH_EXTERNAL @pjausovec 33 / 43

  34. Service Mesh - Gateway 1 apiVersion : networking.istio.io/v1alpha3 2 kind : Gateway 3 metadata : 4 name : gateway 5 spec : 6 selector : 7 istio : ingressgateway 8 servers : 9 - port : 10 number : 80 11 name : http 12 protocol : HTTP 13 hosts : 14 - "hello.example.com" @pjausovec 34 / 43

  35. @pjausovec 35 / 43

  36. @pjausovec 36 / 43

  37. @pjausovec 37 / 43

  38. @pjausovec 38 / 43

  39. Service Mesh - Sidecar 1 apiVersion : networking.istio.io/v1alpha3 2 kind : Sidecar 3 metadata : 4 name : default 5 namespace : prod-us-west-1 6 spec : 7 egress : 8 - hosts : 9 - 'prod-us-west-1/*' 10 - 'prod-apis/*' 11 - 'istio-system/*' @pjausovec 39 / 43

  40. @pjausovec 40 / 43

  41. Resources Kubernetes on Oracle Cloud (OKE) - (https://cloud.oracle.com) Kubernetes - (https://kubernetes.io) Istio - (https://istio.io) Oracle Microservices Example MuShop - https://github.com/oracle-quickstart/oci-cloudnative @pjausovec 41 / 43

  42. Thank you Slides: https://slides.peterj.dev Contact @pjausovec https://peterj.dev @pjausovec 42 / 43

  43. Table of Contents Introduction Service Mesh Tra�c Management Resources @pjausovec 43 / 43

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend