shakunt1202 / Blue-Green-Deployment-using-kubernetes

This is a Blue green deplyment using Kubernetes and Kustomize

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blue-Green-Deployment-using-kubernetes

The gist of blue-green deployments is to have two identical environments, conventionally called blue and green, to do continuous, risk-free updates. This way, users access one while the other receives updates.

Blue-Green Deployment

Blue and green take turns. On each cycle, we deploy new versions into the idle environment, test them, and finally switch routes so all users can start using it. With this method, we get three benefits:

We test in a real production environment. Users don’t experience any downtime. We can rollback in an instant in case there is trouble.

About

This is a Blue green deplyment using Kubernetes and Kustomize