Professional Cloud DevOps Engineer
Prepare and test your skills
Prepare and test your skills
Worked example. The correct answer is already marked and every option is explained below, so there is nothing to select here. To answer questions yourself, start the free trial.
A DevOps engineering team is designing a continuous delivery architecture using Google Cloud Build, Google Cloud Deploy, and Google Kubernetes Engine (GKE). The application requires distinct manifest configurations across development, staging, and production environments using Kustomize.
The pipeline must satisfy the following technical requirements:
skaffold.yaml configuration file for both local development and remote CI/CD execution.Which configuration and workflow strategy should the team implement?
This solution orchestrates a seamless continuous delivery workflow by coupling Skaffold artifact management and environment profiles directly with Google Cloud Deploy release management. Skaffold serves as the declarative configuration layer that bridges local developer workflows and automated cloud delivery pipelines.
skaffold.yaml containing root artifact configurations and target-specific profiles allows developers to test locally with skaffold dev or skaffold run while Cloud Deploy invokes the defined profiles during pipeline progression.skaffold build with the --file-output=artifacts.json flag produces a structured metadata file capturing the exact image repository tags and immutable sha256 digests published to Artifact Registry.--build-artifacts=artifacts.json into gcloud deploy releases create enables Cloud Deploy (via internal Cloud Build execution) to run skaffold render and swap placeholder image references across all target profiles deterministically.sed or kustomize edit in CI jobs.This architecture represents the native Google Cloud best practice for continuous delivery. It allows Cloud Deploy to manage release progression and target rendering through standard Skaffold CLI contracts without requiring custom synchronization scripts or fragile intermediate storage steps.
Keep the momentum going with these hand-picked practice scenarios
Want more questions like this?
Get a free certification question every week.