InterviewSolution
| 1. |
What Is Rolling Strategy? |
|
Answer» A rolling deployment slowly replaces INSTANCES of the previous VERSION of an application with instances of the new version of the application. A rolling deployment typically waits for new pods to BECOME READY via a readiness check before scaling down the old components. If a significant issue occurs, the rolling deployment can be aborted. A rolling deployment slowly replaces instances of the previous version of an application with instances of the new version of the application. A rolling deployment typically waits for new pods to become ready via a readiness check before scaling down the old components. If a significant issue occurs, the rolling deployment can be aborted. |
|