CI/CD & GitOps Practical By Samson Tanimawo, PhD Published Jan 11, 2026 4 min read

Blue-Green Cluster Deploy

Blue-green at the cluster level.

Setup

Blue-green at the cluster level is the heaviest hitter in the deployment toolkit. Instead of upgrading one cluster in place by replacing nodes or workloads incrementally, you stand up a full second cluster (the green one), bring it to feature parity, route traffic to it, and tear down the first (the blue one). The whole transition is binary: traffic is on blue, then traffic is on green, with a fast and complete rollback path the entire time.

What the setup actually entails:

The setup is operationally rigorous and that is the point. When the flip happens, there are zero surprises because every component has been exercised in advance.

Cost

Blue-green is expensive. Pretending otherwise is how the pattern gets misapplied. Anyone evaluating it has to be honest about the bill before committing.

The honest cost is real and the honest answer is "it depends on your blast radius."

When

Blue-green at the cluster level is not the right pattern for routine deploys. It is the right pattern for the deploys where the alternative is much worse.

Save blue-green for the changes whose alternative is hours of careful in-place prod work. Use rolling for everything else. Nova AI Ops watches both patterns: surge headroom on rolling deploys, parity probes between blue and green clusters during transitions, and per-cluster SLO traces so the flip happens on evidence rather than hope.