Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1.04 KB

README.md

File metadata and controls

27 lines (18 loc) · 1.04 KB

Kubernetes Deployment Strategies

A collection of example implementations for Kubernetes deployment strategies.

Strategies

Canary

Canary deployment strategy involves deploying new versions of application next to stable production versions to see how the canary version compares against the baseline before promoting or rejecting the deployment.

  1. Kubernetes Native
  2. Helm
  3. Traffic Splitting with Ingress
  4. Service Mesh

Please note

These samples are intended for demonstration purposes only. We would not recommend referencing these for production consumption.

Contributors