nerdexam
CompTIA

CV0-003 · Question #847

A systems administrator is deploying a new version of a website. The website is deployed in the cloud using a VM cluster. The administrator must then deploy the new version into one VM first. After a

The correct answer is C. Rolling. A rolling upgrade updates instances one at a time, validating each before proceeding to the next, continuing until all nodes are updated. This approach incrementally replaces the old version across the entire cluster.

Deployment

Question

A systems administrator is deploying a new version of a website. The website is deployed in the cloud using a VM cluster. The administrator must then deploy the new version into one VM first. After a period of time, if there are no issues detected, a second VM will be updated. This process must continue until all the VMs are updated. Which of the following upgrade methods is being implemented?

Options

  • ACanary
  • BBlue-green
  • CRolling
  • DStaging

How the community answered

(24 responses)
  • A
    4% (1)
  • B
    4% (1)
  • C
    92% (22)

Why each option

A rolling upgrade updates instances one at a time, validating each before proceeding to the next, continuing until all nodes are updated. This approach incrementally replaces the old version across the entire cluster.

ACanary

A canary deployment routes a small percentage of live traffic to the new version simultaneously alongside the old, rather than updating VMs sequentially until all are replaced.

BBlue-green

Blue-green deployment maintains two identical environments and switches all traffic at once via a load balancer cutover, not an incremental per-VM update process.

CRollingCorrect

A rolling upgrade sequentially updates each VM, pausing to verify stability before moving to the next instance. This matches the described process of updating one VM, monitoring for issues, then repeating through the cluster. The strategy limits the blast radius of any defect by ensuring only a subset of VMs runs the new version at any given time.

DStaging

Staging is a pre-production environment used for testing before any production release, not a production upgrade method.

Concept tested: Rolling deployment strategy for VM clusters

Source: https://docs.aws.amazon.com/whitepapers/latest/overview-deployment-options/rolling-deployments.html

Topics

#rolling deployment#VM cluster#upgrade strategies#deployment methods

Community Discussion

No community discussion yet for this question.

Full CV0-003 Practice