Other Certifications · Google Cloud · GCP DevOps Engineer

Google Cloud Professional DevOps Engineer

Of the three cloud vendors with a DevOps-branded certification, Google's is the odd one out. Open the exam guide and nearly a quarter of it is a site-reliability-engineering syllabus lifted straight from Google's own SRE practice — SLIs, SLOs, error budgets, the "opportunity cost of nines" — sitting next to the pipeline and observability material you'd expect from any cloud vendor's exam. That makes this the natural third page to read alongside AWS's DOP-C02 and Azure's AZ-400 if you're comparing all three before committing study hours to one cloud. Below: what the credential actually is, the SRE vocabulary that makes it distinctive, the five official exam sections with their current published weights, a head-to-head against the other two cloud DevOps exams, and an honest map of what this course already teaches you for free.

☺ Explain it like I'm 10

Picture three driving tests, one per car brand. AWS's asks a hundred questions about which button does what, across a huge dashboard. Azure's asks the same kind of questions — but won't even let you sit the test until you've already passed an easier test in that same car. Google's asks the button questions too, but first it stops you and asks a different question entirely: "how safe does this car need to be before you're allowed to drive it fast?" It makes you do the arithmetic on that before it lets you answer anything about buttons. That safety-budget question is Google's own invention, and it's the one thing on this page you will not find on the other two exams.

🦫🦥Your hosts for this topic: Benny the Beaver & Sol the Sloth — Benny built the CI/CD pipeline this exam spends more of its weight on than anything else; Sol is the one who insists you do the slow, honest arithmetic on an error budget before you trust a single dashboard. Between the two of them, that's roughly half the exam covered.

What the credential is, and who Google says should sit it

☺ Like you're 10: Google's grown-up badge for "ship changes and keep production up" — no vendor exam code, no formal prerequisite, but a real expectation of hands-on Google Cloud experience behind it.

The Professional Cloud DevOps Engineer sits in Google Cloud's Professional tier — above the Associate Cloud Engineer and the foundational Cloud Digital Leader credential, alongside peers like the Professional Cloud Architect. Google's own framing of the role: someone who implements processes and capabilities across the systems development lifecycle using Google-recommended methodologies and tools, balancing reliability against delivery speed, and optimizing production systems for both performance and cost. That middle phrase is the error-budget idea stated as a job description, and it runs through the whole exam.

No exam code, and no visible guide version

Where AWS answers to DOP-C02 and Microsoft answers to AZ-400, Google publishes no code at all — the credential is identified by name only. Google revises the exam guide by swapping the PDF at the same stable URL, with no version number printed anywhere on the certification page you'd actually bookmark; the guide itself carries an internal notice of when a given revision goes live, and the one this page is checked against states it went live 12 December 2024. Practically: a course, dump, or blog post claiming to cover "the current blueprint" tells you nothing by itself, and section weights you find elsewhere may already be stale. This page transcribes section titles and weights directly from that dated guide, and flags below exactly where an older, still widely-quoted revision disagrees with it.

Prerequisites: none required, but the recommendation is the real gate

Per the official certification page, there are no formal prerequisites — anyone can register. Google's recommended experience is 3+ years of industry experience including 1+ years designing and managing production systems on Google Cloud specifically. Treat the second number as the honest gate: a large share of the exam's scenario questions turn on which Google-specific service or configuration is the "Google-recommended" answer among several technically workable options, and that judgment is built from use, not from a study guide.

The SRE spine — the domain the other two exams don't really have

☺ Like you're 10: SLIs, SLOs, SLAs, and error budgets, defined precisely enough to do arithmetic with — Google's own SRE team invented this vocabulary, and it's the section of this exam that has no real equivalent on the AWS or Azure DevOps exams.

Section 3 of the exam guide, Applying site reliability engineering practices to applications, is where this credential earns the framing in its own brief. An SLI (service level indicator) is a measurement — the ratio of good requests to total requests, say. An SLO (service level objective) is a target for that measurement over a rolling window: 99.9% of requests succeed over 30 days. An SLA (service level agreement) is an SLO with a contract and a financial penalty attached, deliberately looser than the internal SLO so there's room to miss the SLO without breaching the SLA. And the error budget is simply 1 − SLO — the amount of badness you're allowed this window, and therefore the risk you're permitted to spend shipping fast. Burn through it early and the model says stop shipping features and stabilize; sit on an unspent budget and the model says you're being too conservative.

SLO target 99.9% good requests, 30-day window Error budget = 1 − SLO 0.1% badness allowed this window Budget remaining spend it: ship faster, take more risk Budget exhausted spend it: freeze features, stabilize

This isn't abstract for the exam — competency 3.1 explicitly names "the opportunity cost of risk and reliability (e.g., number of nines)," which is asking you to reason about why 99.99% availability is often the wrong target, not just the impressive-sounding one: each additional nine costs real engineering effort and calendar time that could have shipped features instead, and the exam wants that trade-off argued out loud, not just recited. This is exactly the thinking this course teaches, cloud-vendor-neutral, in measuring success: the DORA metrics and in SLOs, error budgets & toil — read those first and the Google-specific vocabulary here is mostly new nouns on a concept you already own.

# error-budget arithmetic — the kind of "opportunity cost of nines" question Section 3.1 asks,
# worked the slow way Sol insists on rather than eyeballed
SLO           = 0.999                        # 99.9% good requests, the target
error_budget  = 1 - SLO                       # = 0.001 → 0.1% badness allowed this window
requests_30d  = 43_200_000                    # ~1,000 req/s sustained over a 30-day window
budget_reqs   = requests_30d * error_budget   # = 43,200 bad requests allowed this window

# burn rate = how fast you're spending the budget, as a multiple of the sustainable rate.
# spend all 43,200 in the first 3 days of a 30-day window and you're burning at 10x —
# at 10x sustained, a 30-day budget is gone in 3 days. That ratio is what pages someone,
# not a raw error count and not a gut feeling about how bad today "felt."

The five official exam sections and their current weights

☺ Like you're 10: Five sections, unevenly sized — nearly a third of the whole exam is CI/CD pipelines, and the SRE material most people expect to dominate is actually only the third-biggest slice.

The section titles and weights below are transcribed from the exam guide revision effective 12 December 2024, the most recent one verified for this page. They sum to exactly 100%.

🚀Building and implementing CI/CD pipelines for applications and infrastructure
~27.5%
🦥Applying site reliability engineering practices to applications
~22.5%
🐘Implementing observability practices
~20%
🏗️Bootstrapping and maintaining a Google Cloud organization
~15%
🩺Optimizing performance and troubleshooting
~15%
#Section (official title)WeightWhat it actually covers
1Bootstrapping and maintaining a Google Cloud organization~15%Resource hierarchy (projects, folders, shared networking), IAM and org-level policies, service accounts, App Hub; infrastructure as code via Cloud Foundation Toolkit, Config Connector, Terraform, or Helm plus Python/Go scripting; CI/CD architecture spanning Cloud Build, Cloud Deploy, and named third-party tools — Jenkins, Git, Argo CD, Packer; managing multiple and ephemeral environments and GKE fleets; secure dev environments (Cloud Workstations, Cloud Shell), including Gemini Code Assist.
2Building and implementing CI/CD pipelines for applications and infrastructure~27.5%Pipeline design and triggers, Artifact Registry, approval flows, CI/CD applied to infrastructure itself (GKE clusters, managed instance groups, Cloud Service Mesh config) and to serverless apps; deployment auditing; canary, blue/green, rolling, and traffic-splitting strategies; troubleshooting deployment issues; key and secret management (Cloud KMS, Secret Manager, Certificate Manager) and build-versus-runtime injection; vulnerability scanning, Binary Authorization, and the SLSA framework; environment-scoped IAM.
3Applying site reliability engineering practices to applications~22.5%SLIs, SLOs, SLAs, error budgets, and the opportunity cost of "nines"; service lifecycle management — onboarding checklists, launch and deployment plans, retirement; capacity planning and autoscaling across managed instance groups, Cloud Run, and GKE; mitigating incident impact by draining or redirecting traffic, adding capacity, or rolling back.
4Implementing observability practices~20%Log collection and import (Cloud Logging agent, Cloud Audit Logs, VPC Flow Logs, Cloud Service Mesh); filtering, sampling, exclusions, and cost; export to BigQuery or Pub/Sub; handling PII and PHI; metrics including Google Cloud Managed Service for Prometheus and custom metrics built from logs; synthetic monitors; dashboards, playbooks, alerting policies, and widely used third-party alerting tools.
5Optimizing performance and troubleshooting~15%Troubleshooting infrastructure, application, CI/CD-pipeline, observability, and performance/latency issues; debugging tooling — application instrumentation, Cloud Trace, Error Reporting; optimizing cost — observability spend, Spot VMs, committed- and sustained-use discounts, network tiers, Google Cloud recommenders.

Two things are easy to miss on a skim. First, the single biggest line item is not the reliability material most people expect walking in — it's Section 2, CI/CD pipelines, at roughly double Section 1's weight and comfortably ahead of Section 3. Second, this revision gives troubleshooting its own section (5) paired with cost, rather than folding it into observability the way an earlier, still widely-quoted edition did — if a practice test or study guide you're using describes a single combined "observability and troubleshooting" section worth around a quarter of the exam, it's citing that older revision, and its other section weights are stale too.

⚠ Verify before you book

Section weights, price, question count, and format have all changed at some point in this exam's history, and Google revises the guide silently at the same URL — there is no visible edition number on the page you'd bookmark. Confirm current details on the official Google Cloud certification page and the current exam guide PDF before you register for anything. Nothing on this page is authoritative — this site is independent and unofficial.

↗ Google Cloud official certification page

Three cloud-vendor DevOps exams, compared

☺ Like you're 10: Put the three booklets side by side and none of them tests the same thing — and only one of the three makes you pass a different test first.

If you're deciding which of the three to study for, the shape of this table matters more than any single number in it.

AWS DOP-C02Azure AZ-400GCP Cloud DevOps Engineer
Vendor tierProfessionalExpertProfessional
Exam codeDOP-C02AZ-400None published
PrerequisiteNone formal; 2+ years hands-on AWS recommendedMust already hold AZ-104 (Azure Administrator Associate) or AZ-204 (Azure Developer Associate)None formal; 3+ years industry / 1+ year on GCP recommended
Format75 multiple-choice / multiple-response questions~40–60 questions incl. case studies (commonly reported — verify)50–60 multiple-choice / multiple-select questions
Duration180 minutes~150 minutes seat time (commonly reported — verify)120 minutes
Passing score750 / 1000700 / 1000Not published
Price (USD)$300~$165, varies by region (commonly reported — verify)$200 + tax
Validity & renewal3 years; retake or hold a qualifying higher-level cert1 year; free online (non-proctored) renewal assessment2 years; standard retake — no shorter renewal path published for this credential

The SRE comparison the intro promised: AWS's DOP-C02 doesn't name site reliability engineering as a domain at all, folding the equivalent ideas into its monitoring and incident-response material instead. Azure's AZ-400 skills outline is commonly reported to include a slim "develop a site reliability engineering strategy" line at roughly 5–10% of the exam — real, but a fraction of the weight, and without a formal SLI/SLO/error-budget vocabulary spelled out the way Google's guide spells it out. This page's Section 3 alone outweighs that entire reported AZ-400 line more than twice over.

Read the shape of the table as the actual decision aid: pick based on which cloud you're already operating, not which name you've heard most. If your workloads run on AWS, the certifications hub's DOP-C02 profile is the one worth your study hours, and it's the only one of the three not gated behind another certification. If they run on Azure, AZ-400 is unavoidable if you don't already hold AZ-104 or AZ-204 — budget for two exams, not one, and expect a meaningful share of AZ-400's own domain weight to sit on source control, security and compliance planning, and team communication, process work as much as pipeline tooling. If they run on Google Cloud, this page is your one exam, no earlier certificate required — but a genuine fifth of it is a reliability-engineering discipline the other two don't test with anything like the same weight.

What you actually need to know — mapped onto this course

☺ Like you're 10: Here's the map from each exam section to the exact lesson here that teaches the underlying idea, so you can start studying today with what already exists on this site.

None of the pages below are written with Google's nouns attached — you'll still need gcloud syntax, Cloud Build YAML, and Google's own service names from Google's own documentation. But the thinking behind almost every section transfers for free, and it's worth learning the concept before you learn which Google product implements it.

Exam areaGoogle's toolsLearn the concept here
Org bootstrap, IaC & environmentsCloud Foundation Toolkit, Config Connector, Terraform, HelmInfrastructure as code, Configuration Management & IaC, Terraform, Helm
CI/CD pipelines & progressive deliveryCloud Build, Cloud Deploy, Artifact Registry, SkaffoldCI/CD pipelines, Deployment strategies, SDLC Automation, Feature Flags & Progressive Delivery, Testing in the Pipeline
Pipeline secrets & supply-chain securityCloud KMS, Secret Manager, Certificate Manager, Binary Authorization, SLSASecrets & Credential Management, Supply-Chain Security & SBOM, HashiCorp Vault
SLOs, error budgets & incident mitigationCloud Monitoring SLOs, alerting policiesMeasuring success: the DORA metrics, SLOs, Error Budgets & Toil, Incident management, Incident & Event Response, On-Call Culture & Sustainable Operations, Chaos Engineering & Game Days
Telemetry: logs, metrics, tracesCloud Logging, Cloud Monitoring, Managed Service for Prometheus, Cloud TraceMonitoring & observability, Monitoring & Logging, Distributed Tracing & Telemetry, Prometheus, Grafana
Cost optimizationSpot VMs, committed/sustained-use discounts, Google Cloud recommendersFinOps for Delivery Pipelines
◆ Key idea

Separate the practice from the product before you spend a single study hour. The practice — reliability as a budget you spend deliberately on velocity — is permanent, portable, and taught free right here. The product knowledge is rented: valuable exactly as long as you're billing Google for the infrastructure underneath it. Rent only once you already live in the house.

Exam logistics, verified

☺ Like you're 10: Two hours, fifty-to-sixty questions, two hundred dollars, no lab component at all — and it goes stale after two years unless you sit the whole thing again.

Everything below was checked against Google's own certification page and exam guide as of this writing. Confirm it again yourself before paying for anything — Google changes these details without much notice.

ItemPer Google's own materials, as of writing
Exam codeNone published — Google identifies the credential by name only
Duration2 hours
Format50–60 multiple-choice and multiple-select questions — no hands-on lab component anywhere on the exam
Registration fee$200 (plus applicable tax)
LanguagesEnglish, Japanese
DeliveryOnline, remotely proctored, or onsite at an authorized testing center (Pearson VUE)
PrerequisitesNone formally required
Recommended experience3+ years industry experience, including 1+ years designing and managing production systems on Google Cloud
Passing scoreNot published by Google
Validity2 years from the date you pass, like all Google Cloud Professional-tier credentials
RenewalOpens 60 days before expiry with a 30-day grace window after; the shorter renewal-exam and course-based paths exist only for a named subset of credentials (Professional Cloud Architect, Professional Data Engineer, Associate Cloud Engineer, Cloud Digital Leader) that does not include this one — renewal here means sitting the standard exam again, not a quiz.

Sources checked for this section: the certification page, the exam guide PDF, and the renewal FAQ.

Who should sit it — and who should honestly skip it

☺ Like you're 10: Take it if this is genuinely your cloud. Skip it if it isn't — a multiple-choice exam about someone else's infrastructure teaches you far less than an hour spent operating your own.

Three real reasons to sit it. Your platform actually runs on Google Cloud, and this is a structured tour of your own production environment, corners you avoid included — organization policies, GKE fleets, log sinks, committed-use discounts. You want the SRE vocabulary formalized: Google's definitions of SLI, SLO, SLA, error budget, and burn rate are the ones the rest of the industry borrowed, and Section 3 forces precision about numbers you've probably been waving at people informally. Or a partner or employer requires it — a commercial reason rather than a learning one, and a legitimate one as long as you're honest with yourself that that's what it is.

Four honest reasons to skip it. You're not on Google Cloud — most of the study time then buys nothing transferable; spend it on the Terraform Associate or the CKA instead. You already run real SLOs against a real on-call rotation — Section 3 will teach you Google's names for things you already practice, not new judgment. You want Kubernetes depth specifically — GKE appears throughout this exam but only as one deployment target among several, and the CKA is the straighter path there. Or you dislike an exam with no hands-on component at all: fifty to sixty multiple-choice questions in two hours is weaker evidence of operational skill than a credential graded on a live cluster, like the CKA profiled elsewhere on this shelf — worth saying out loud before you spend $200 on recall rather than proof of doing.

🎬 At the Ship-It Guild
🦊

Foxy: Google basically wrote the book on SRE. So this is the SRE certification with a Google logo on it, right?

🦥

Sol the Sloth: Slow down, Foxy. Section 3 is twenty-two and a half percent. Section 2 — pipelines — is bigger on its own, and Section 2 plus Section 4 together are nearly half the exam.

🦫

Benny the Beaver: Can confirm. I wrote more Cloud Build steps studying for this than in three real jobs combined. It's a cloud exam wearing an SRE t-shirt.

👺

Gizmo the Gremlin: Or skip the studying entirely — memorize a hundred dump questions the night before. Two hundred bucks, multiple choice, what's the worst that happens? 🤑

🐢

Timmy the Turtle: The worst that happens is you get a badge for a job you can't actually do, and the next real incident finds that out before your manager does.

🦥

Sol the Sloth: Also, most dumps I've seen are still citing a guide from before December 2024. Half their section weights are already wrong, and they don't even know it.

🐢 Timmy's checkpoint

1. Which of the five official sections carries the largest weight in the current exam guide, and roughly what percentage? 2. Define SLI, SLO, SLA, and error budget in one line each. 3. What is the one meaningful prerequisite difference between AZ-400 and the other two cloud DevOps exams? 4. How much does this GCP credential cost, how long is it valid, and does it have a shorter renewal path? 5. Name two things this course already teaches for free that map directly onto this exam's SRE section. 6. Why can't you trust a "current" section-weight percentage you find on a random third-party study guide without checking when it was written?

Check your answers
  1. Section 2, Building and implementing CI/CD pipelines for applications and infrastructure, at roughly 27.5% — the biggest single line item, ahead of the SRE section most people expect to dominate.
  2. SLI: a measurement, like the ratio of good requests to total requests. SLO: a target for that measurement over a window, e.g. 99.9% over 30 days. SLA: an SLO with a contract and financial penalty attached, deliberately looser than the SLO. Error budget: 1 − SLO — the badness you're allowed this window, and the risk you're permitted to spend shipping fast.
  3. AZ-400 requires you to already hold a prerequisite certification — either AZ-104 (Azure Administrator Associate) or AZ-204 (Azure Developer Associate) — before the Expert credential activates. Neither AWS's DOP-C02 nor Google's Professional Cloud DevOps Engineer gates on an earlier certification.
  4. $200 plus tax, valid for 2 years. There is no shorter renewal path for this specific credential — renewal means sitting the standard exam again, unlike the four Google credentials that do offer a shorter route.
  5. Any two of: measuring success: the DORA metrics, SLOs, Error Budgets & Toil, Incident management, Incident & Event Response, On-Call Culture & Sustainable Operations, Chaos Engineering & Game Days.
  6. Because Google revises the exam guide silently at the same URL with no visible version number on the certification page — an earlier revision bundled troubleshooting into the observability section at a different combined weight, and material built around that older layout is still widely circulated without anyone flagging that it's out of date.