
Answer-first summary for fast verification
Answer: Create two pipeline stages, and use a standard deployment strategy.
Given the requirement for manual verification by the Quality Assurance team before any production traffic is processed, the most appropriate approach is to have two pipeline stages. The first stage can be used for deploying the web service to a testing or staging environment where the Quality Assurance team can perform their manual verification. Once the manual verification is completed and approved, the second stage can then proceed with deploying the web service to the production environment using a standard deployment strategy. This ensures that the web service is only deployed to production after it has been manually verified, meeting the company's requirements. A canary deployment strategy is not necessary in this scenario because the manual verification step already serves as a gate before production deployment.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
Your company is implementing a continuous delivery pipeline in Cloud Deploy for a web service running on GKE. Currently, the web service lacks automated testing, requiring manual verification by the Quality Assurance team before new releases can process production traffic. How should you design this CD pipeline?
A
Create a single pipeline stage, and use a standard deployment strategy.
B
Create a single pipeline stage, and use a canary deployment strategy.
C
Create two pipeline stages, and use a canary deployment strategy.
D
Create two pipeline stages, and use a standard deployment strategy.