Infrastructure

Rolling Update

A deployment strategy that replaces application instances one at a time (or in small batches), maintaining availability throughout by ensuring a minimum number of healthy instances at all times. Unlike blue-green deployments, rolling updates require only one production environment but briefly run mixed versions. Kubernetes implements rolling updates via Deployment objects with configurable maxUnavailable and maxSurge parameters.

相关协议

在指南中提及

另请参阅