April 2022
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

Categories

April 2022
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

Deploying or upgrading Kubernetes

In this model, we deploy new changes to multiple services simultaneously. This approach is easy to implement. But since all the services are upgraded at the same time, it is hard to manage and test dependencies. It’s also hard to rollback safely.

With blue-green deployment, we have two identical environments: one is staging (blue) […]