ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 227 - Professional Cloud Developer discussion

Report
Export

You are developing a new web application using Cloud Run and committing code to Cloud Source Repositories. You want to deploy new code in the most efficient way possible. You have already created a Cloud Build YAML file that builds a container and runs the following command: gcloud run deploy. What should you do next?

A.
Create a Pub/Sub topic to be notified when code is pushed to the repository. Create a Pub/Sub trigger that runs the build file when an event is published to the topic.
Answers
A.
Create a Pub/Sub topic to be notified when code is pushed to the repository. Create a Pub/Sub trigger that runs the build file when an event is published to the topic.
B.
Create a build trigger that runs the build file in response to a repository code being pushed to the development branch.
Answers
B.
Create a build trigger that runs the build file in response to a repository code being pushed to the development branch.
C.
Create a webhook build trigger that runs the build file in response to HTTP POST calls to the webhook URL.
Answers
C.
Create a webhook build trigger that runs the build file in response to HTTP POST calls to the webhook URL.
D.
Create a Cron job that runs the following command every 24 hours: gcloud builds submit.
Answers
D.
Create a Cron job that runs the following command every 24 hours: gcloud builds submit.
Suggested answer: B

Explanation:

https://cloud.google.com/build/docs/triggers

Cloud Build uses build triggers to enable CI/CD automation. You can configure triggers to listen for incoming events, such as when a new commit is pushed to a repository or when a pull request is initiated, and then automatically execute a build when new events come in. You can also configure triggers to build code on any changes to your source repository or only on changes that match certain criteria.

asked 18/09/2024
Paul Devlin
36 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first