CV0-003 · Question #881
A company's website development team made some code changes to implement a new feature. The development team published the changes via a code pipeline and verified that the feature is in the developme
The correct answer is B. Confirm that the deployment has been completed in the QA environment.. When a feature is visible in development but not in the test environment, the most logical first diagnostic step is to verify whether the deployment pipeline actually promoted the code to the QA environment.
Question
A company's website development team made some code changes to implement a new feature. The development team published the changes via a code pipeline and verified that the feature is in the development environment. However, the testing team is unable to see the new feature when executing the test plan. Which of the following steps should the cloud administrator take first to identify the cause of the issue?
Options
- ARoll back the development pipeline to revert and reapply the changes.
- BConfirm that the deployment has been completed in the QA environment.
- CSwitch the application load balancer to use the blue environment
- DUpdate the policies on the CASB to allow access to the test environment.
How the community answered
(36 responses)- A3% (1)
- B83% (30)
- C8% (3)
- D6% (2)
Why each option
When a feature is visible in development but not in the test environment, the most logical first diagnostic step is to verify whether the deployment pipeline actually promoted the code to the QA environment.
Rolling back and reapplying changes is a corrective action, not a diagnostic step, and should only be taken after identifying the actual root cause.
Confirming deployment completion in the QA environment directly addresses the symptom - the feature exists in dev but is absent in test - by checking whether the pipeline stage that targets QA ran successfully. Many CI/CD pipelines require a manual approval gate or separate trigger to promote builds between environments. Verifying this first eliminates the most common and straightforward cause before taking any corrective action.
Switching the load balancer to a blue environment is relevant to a blue-green deployment strategy but is not a diagnostic step and could disrupt production traffic.
Updating CASB policies addresses access control restrictions, which is a less probable cause than a simple pipeline promotion failure and should be investigated only after confirming the code is actually deployed.
Concept tested: CI/CD pipeline environment promotion troubleshooting
Source: https://learn.microsoft.com/en-us/azure/devops/pipelines/process/stages
Topics
Community Discussion
No community discussion yet for this question.