application delivery and release management
play

Application Delivery and Release Management Honestbee - PowerPoint PPT Presentation

Application Delivery and Release Management Honestbee @vincentdesmet with Containers, Kubernetes and Helm Grocery and Food delivery Honestbee We are Hiring DevOps! Overview Context & overview of Containers (Docker) - Container


  1. Application Delivery and Release Management Honestbee @vincentdesmet with Containers, Kubernetes and Helm

  2. Grocery and Food delivery

  3. Honestbee We are Hiring DevOps!

  4. Overview Context & overview of Containers (Docker) - Container Orchestration (Kubernetes) - Managing Releases (Helm) - CI/CD ~ Demo (Drone) -

  5. Agile Evolution Today ~2000 Loosely Coupled Monolithic Services Rapidly Slow updated changing Many Small Servers Big Servers Reference: http://docker.com

  6. Containers / VMs AppA AppB AppB AppA Bins / Libs Bins/Libs Bins/Libs Bins / Libs Guest OS Guest OS Container Runtime Interface Host OS Hypervisor Infrastructure Infrastructure

  7. Docker containers • Packages up software binaries and dependencies • Isolates software from each other Container • Container is a standard format • Easily portable across environment • Allows ecosystem to develop around its standard Reference: http://docker.com

  8. Docker Concepts Docker Image The basis of a Docker container Docker Container The standard unit in which the application service resides Docker Engine Creates, ships and runs Docker containers deployable on physical or virtual host locally, in a datacenter or cloud service provider Docker Registry On-premises registry for image storing and collaboration

  9. Docker Tools: BUILD, SHIP, RUN

  10. Container Orchestration Mesos - Kubernetes - Docker Swarm - ... -

  11. More than just packing and Isolation Scheduling : Where should the containers run? - Resource Optimisation : How much resources does each container - really need? Lifecycle and health : Keep containers running despite failures - Discovery : How can I connect to the containers? - Monitoring : What’s happening with the containers? - Auth{n,z} : Control who can do what with the containers? - Aggregate : Compose set of containers into jobs - Scaling : Handle higher load by adding more instances - … - Source

  12. "κυβερνήτης" (kubernetes) is KUBERNETES Greek for "pilot" or "helmsman of ship"

  13. WHAT IS KUBERNETES? •Container orchestrator •Runs and manages containers •Supports multiple cloud & bare-metal environments •100% Open Source written in Go •Built on decades of experience of running containers at Google •First project hosted by CNCF (Accepted on Mar. 11 2016) Container packaged Dynamically scheduled (Micro) Service oriented

  14. CONCEPTS: PODS Container Foo Container Bar Namespaces: - Net - IPC - … volumes

  15. k8s - High Level View

  16. k8s - High Level View

  17. k8s - High Level View Run X Replicas = 2 Memory = 4Gi CPU = 2.5

  18. k8s - High Level View Which node?

  19. k8s - High Level View X n u R Run X

  20. k8s - High Level View Pull X

  21. k8s - High Level View X status X status

  22. LABELS app : my-app app : my-app role : master role : master track: stable track: canary app : my-app app : my-app role : worker role : worker track: stable track: canary

  23. SELECTORS app : my-app app : my-app role : master role : master track: stable track: canary app : my-app app : my-app role : worker role : worker track: stable track: canary app : my-app

  24. SELECTORS app : my-app app : my-app role : master role : master track: stable track: canary app : my-app app : my-app role : worker role : worker track: stable track: canary app : my-app role : worker

  25. SELECTORS app : my-app app : my-app role : master role : master track: stable track: canary app : my-app app : my-app role : worker role : worker track: stable track: canary app : my-app track: canary

  26. REPLICA SETS - Desired State: Replica Set: - replicas: 1 + - selector: - app: my-app - version: 1.0 - Pod Specification - Replica Count - Label Selector

  27. REPLICA SETS Replica Set: - replicas: 2 + - selector: - app: my-app - version: 1.0

  28. REPLICA SETS Replica Set: - replicas: 4 + - selector: - app: my-app - version: 1.0

  29. SERVICES - de-couple discovery from application Think of: - Define how to access pods - Dynamic Routing Table - Act as a proxy (Virtual IP - stable for DNS) Service: - nodePort: 30128 - selector: - app: my-app - version: 1.0

  30. + DEPLOYMENTS Replica Set: - Manage updates with Deployment resources - replicas: 2 + - selector: - app: my-app - version: 1.0 Service: - nodePort: 30128 - selector: - app: my-app

  31. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: - replicas: 4 + - selector: - app: my-app - version: 1.0 Service: - nodePort: 30128 - selector: - app: my-app

  32. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 4 + - replicas: 1 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  33. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 3 + - replicas: 1 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  34. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 3 + - replicas: 2 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  35. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 2 + - replicas: 2 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  36. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 2 + - replicas: 3 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  37. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 1 + - replicas: 3 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  38. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 1 + - replicas: 4 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  39. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: Replica Set: - replicas: 0 + - replicas: 4 + - selector: - selector: - app: my-app - app: my-app - version: 1.0 - Version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  40. Deployment: - strategy: + - rollingUpdate UPDATES Replica Set: - replicas: 4 + - selector: - app: my-app - Version: 2.0 Service: - nodePort: 30128 - selector: - app: my-app

  41. Deployment: - strategy: + - rollingUpdate CONFIGMAPS + ConfigMap: - sample.yaml: | env: production cache: true max_threads: 8 Service: - nodePort: 30128 - selector: - app: my-app

  42. Deployment: - strategy: + - rollingUpdate SECRETS + Secret: - sample.yaml: | key: *** db_user: *** db_pw: *** Service: - nodePort: 30128 - selector: - app: my-app

  43. Kubernetes Deployments Multiple resource types - ConfigMaps - Secrets - Services - … - Based on serializable Manifests - Managing these bundles is a challenge in the long run, can be improved

  44. Challenges Collaboration 1. a. Sharing Manifest files, trust? b. Iterating c. Best Practices Managing Releases 2. a. Define package b. Tweaking ~ Multiple copies & variations c. Migrating

  45. Helm: Package Manager Collaboration with Google, Bitnami, Deis and others - Deis/Helm -> Kubernetes/Helm - Architecture: - Client: Helm - Server: Tiller -

  46. Helm core values Aim for the Apt/Yum/Homebrew User Experience - Ensure collaboration - Reproducible releases - Shareable Packages -

  47. Kubeapps.com

  48. Chart, Repositories, Releases Chart : “Package”, “Bundle” - Repository : Package Repository - Release : Installed Chart (same chart can be installed multiple times) -

  49. Basic Architecture Client - Server

  50. Review using helm Install charts (creates a release) - helm install - List releases - helm ls - Upgrade release - helm upgrade - View release history - helm history - Bootstrap charts - helm create -

  51. Integration with CI/CD

  52. More features Upgrade Releases - helm upgrade <release> - Search Charts - helm search - - KubeApps.com (Monocular - https://github.com/helm/monocular) Manage Chart dependencies - requirements.yaml - helm dep up - Helm Plugins - Keybase: helm keybase sign/verify - GitHub: helm github push -

  53. Mean time to Dopamine Experience RoR promise: - Write a Blog in 15 minutes

  54. Draft Accelerate time from app source code to Kubernetes deployment -

  55. More Info https://youtu.be/QNx9-UjTVXA

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