Topic 1 Question 245
You plan to deploy a new Go application to Cloud Run. The source code is stored in Cloud Source Repositories. You need to configure a fully managed, automated, continuous deployment pipeline that runs when a source code commit is made. You want to use the simplest deployment solution. What should you do?
Configure a cron job on your workstations to periodically run gcloud run deploy --source in the working directory.
Configure a Jenkins trigger to run the container build and deploy process for each source code commit to Cloud Source Repositories.
Configure continuous deployment of new revisions from a source repository for Cloud Run using buildpacks.
Use Cloud Build with a trigger configured to run the container build and deploy process for each source code commit to Cloud Source Repositories.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: D👍 1TNT872023/01/31
- 正解だと思う選択肢: D
Cloud Build is a fully managed, scalable, and efficient service provided by Google Cloud that allows you to automate your software delivery pipeline, including building, testing, and deploying applications. By using a trigger with Cloud Build, you can automatically build and deploy your Go application to Cloud Run whenever a source code commit is made in Cloud Source Repositories. This provides a simple, fully managed solution for continuous deployment, and eliminates the need for manual processes or external tools like Jenkins.
👍 1mrvergara2023/02/04 - 正解だと思う選択肢: D
https://cloud.google.com/run/docs/continuous-deployment-with-cloud-build Cloud Build is a fully managed, scalable, and efficient service provided by Google Cloud that allows you to automate your software delivery pipeline, including building, testing, and deploying applications. By using a trigger with Cloud Build, you can automatically build and deploy your Go application to Cloud Run whenever a source code commit is made in Cloud Source Repositories. This provides a simple, fully managed solution for continuous deployment, and eliminates the need for manual processes or external tools like Jenkins.
👍 1Pime132023/02/26
シャッフルモード