NSE7_PBC-7.2 · Question #44
How does the immutable infrastructure strategy work in automation?
The correct answer is C. It runs two live environments for configuration changes. Immutable infrastructure is a DevOps approach that emphasizes the creation of disposable resources instead of modifying existing ones. This approach helps to achieve stability, consistency, and predictability in IT operations by reducing the risk of configuration drift and…
Question
How does the immutable infrastructure strategy work in automation?
Options
- AIt runs a single live environment for configuration changes.
- BIt runs one idle and a single live environment for configuration changes.
- CIt runs two live environments for configuration changes.
- DIt runs one idle and two live environments for configuration changes.
How the community answered
(18 responses)- A6% (1)
- B11% (2)
- C78% (14)
- D6% (1)
Explanation
Immutable infrastructure is a DevOps approach that emphasizes the creation of disposable resources instead of modifying existing ones. This approach helps to achieve stability, consistency, and predictability in IT operations by reducing the risk of configuration drift and eliminating stateful components. One way to implement immutable infrastructure is to use a blue-green deployment strategy, which runs two live environments for configuration changes. The blue environment is the current production environment, while the green environment is the new version of the application or service. When the green environment is ready, the traffic is switched from blue to green, and the blue environment is destroyed or kept as a backup. This way, there is no need to update or patch the existing infrastructure, but rather replace it with a new one.
Topics
Community Discussion
No community discussion yet for this question.