Certifications · CGOA · Mock Exam · Set 2

CGOA Mock Exam · Set 2

Fifty more multiple-choice questions, weighted question-for-question to the same five domains of the official CGOA curriculum as Set 1 — fifteen on GitOps Principles, ten each on GitOps Terminology and GitOps Patterns, eight on Related Practices, seven on Tooling. This is the second of two papers, and it assumes Set 1's baseline is already solid: instead of testing one fact per question, most items here hand you a short scenario and make you notice two or three things about it at once — a system that satisfies three principles and fails a fourth for a subtler reason, a pairing of terms that only looks synonymous, a pattern applied somewhere unfamiliar. None of these fifty repeat Set 1's questions. Answer first, then read the explanation directly beneath your choice, and use the domain tag on every item to know exactly which page to reread if you miss it.

☺ Explain it like I'm 10

This is the second pop quiz on the same five chapters — except this time, instead of just asking "what does this word mean," it hands you a little story and asks you to spot the one detail that changes the answer. Same rules as before: pick the best answer out of four before you check, because a wrong guess here is free and just points you back to the exact page to reread. There's still no cluster to break — the whole test lives in your head, same as the real one.

🤖🐰Your hosts for this topic: Recon the Robot & Remy the Rabbit — Recon holds the line on the principle-and-tooling scenarios this paper leans on hardest, and Remy is back to find out whether the vocabulary gap from Set 1 actually got fixed, or just got lucky.

How this paper is weighted

☺ Like you're 10: Same split as last time — the biggest chapter still gets the most questions, in the same nice round numbers.

Like Set 1, this paper's fifty questions divide the CGOA's five official domain weights — 30, 20, 20, 16, 14 — with no rounding at all: 15, 10, 10, 8, 7. Keeping the same split across both papers is deliberate, not just tidy: it's what makes a Set 1 score and a Set 2 score directly comparable domain for domain, rather than two numbers on unrelated scales. If Principles cost you points on Set 1 and costs you points again here, that is not the same mistake happening twice by chance — it's the same real gap, confirmed.

DomainOfficial weightQuestions hereWhere to revise
🤖 GitOps Principles30%15GitOps philosophy · CGOA — the exam
🐰 GitOps Terminology20%10Glossary · CGOA — the exam
🦫 GitOps Patterns20%10The Argo ecosystem · Argo Rollouts
🦉 Related Practices16%8IaC & control planes · Configuration & packaging
🤖 Tooling14%7Argo CD · Flux
90-minute pace · 50 questions · 75% to pass Block 1 Q1–17 · ~30m Block 2 Q18–34 · ~30m Block 3 Q35–50 · ~30m 0 80 90 min Weighted to the five official CGOA domains Principles 30% Terms 20% Patterns 20% Related 16% Tooling 14% Every block mixes all five domains Several questions per block combine two ideas at once — read for the second clue, not just the first. The Linux Foundation does not publish the real question count, so treat 50 as a study size, not a claim about the real paper.
◆ Key idea

Score your domains, not just your total — same advice as Set 1, doubly true here. A layered question that combines Principles and Patterns in one stem still only counts toward one domain in the tally below, but missing it can mean either page needs a reread. When in doubt, reread both.

Sit it like the real thing

☺ Like you're 10: Same rules as Set 1 — no notes, no open tabs, one sitting, straight through, never leave a question blank.

Sit this exactly like Set 1: closed-book, one timer, one sitting, no documentation allowance, because there's no terminal here for a "browse the docs" concession to apply to in the first place. The scenario questions in this paper reward reading the whole stem before committing — several are built so that an answer which looks right after the first sentence turns out wrong once you reach the second clue. Slow down by a few seconds per question rather than pattern-matching to the nearest question you remember from Set 1; these are new, and a couple are deliberately shaped to resemble a Set 1 question while testing something different.

⚠ Exam details change — the official page is the authority

What's safe to state structurally: the CGOA is a CNCF/Linux Foundation associate-level, knowledge-based multiple-choice exam — not hands-on like the five core Kubernetes exams in the Kubernetes course or a performance-based exam — delivered online under remote proctoring, with no formal prerequisite. Two numbers the Linux Foundation does publish and this paper is calibrated against: 90 minutes to sit it, and 75% or above to pass (the Linux Foundation's Multiple Choice Exam FAQ states this pass mark applies to every LF multiple-choice exam). What is not published is the real question count — third-party figures for it are unverified, so this paper's size of fifty was chosen only because it divides the five domain weights with no rounding, not because it matches a real number. Price, retake terms, eligibility window and certification validity are all revised over time too. Confirm everything on the official Linux Foundation CGOA page and the CNCF certification page before you register or pay — this page is a study aid, not a substitute for reading them.

The paper — 50 questions across three blocks

☺ Like you're 10: Fifty questions, three blocks, every domain mixed into every block — but more of these stories have two things going on at once, so read the whole thing before you answer.

Each question names its domain in parentheses so you can total your score by domain afterward — the real exam won't label them. A few questions are marked (Select TWO), and a few others deliberately describe a scenario where "nothing is actually wrong" is itself the correct answer — don't assume every stem is hiding a violation just because the last several were.

Block 1 — Q1–17

Q1 (GitOps Principles). An Argo CD Application has prune: true but selfHeal: false. An engineer deletes a ConfigMap that's still declared in Git; separately, someone else hand-edits a Deployment's environment variable that's also still declared in Git. What happens to each, and what does the difference reveal?

Check the answer

C. prune and selfHeal answer different questions — "should deletions from desired state be applied?" versus "should live drift be corrected outside of a triggered sync?" — and this system only has the first one on.

Q2 (GitOps Terminology). A training doc defines five terms: "Desired State: what should be running. State Drift: any change to a Git commit message. State Store: only Git, never anything else. Rollback: SSHing in to fix a broken pod. Feedback Loop: the CI pipeline's build cache." How many of these five are correct as CGOA uses the terms?

Check the answer

C. Drift is actual-vs-desired divergence, not a commit message change; a state store isn't Git-exclusive; rollback is a store-level commit revert, not SSH; a feedback loop reports reconciliation outcomes, not a build cache. Only "Desired State: what should be running" survives as a reasonable gloss.

Q3 (GitOps Patterns). An in-cluster reconciler watches a Git branch and applies changes it finds. A separate, unrelated external service also ingests webhook events from the same repo, purely to post Slack messages about what changed — it never touches the cluster. Does this notification service change whether the deployment mechanism counts as "in-cluster" or "external," or "pull" or "event-driven"?

Check the answer

B. A peripheral notification consumer doesn't redefine the reconciler's own architecture — this is exactly the kind of detail meant to distract from what's actually being asked.

Q4 (Related Practices). A platform runs its application Helm values (Configuration as Code) and its Terraform VPC modules (Infrastructure as Code) through the same Git-triggered CI pipeline, which builds artifacts for both and updates two separate desired-state repos reconciled by two different tools. Is mixing CaC and IaC through the same general delivery approach coherent, or does it break something?

Check the answer

B. Related Practices tests the relationship between disciplines, not a rule that they must stay siloed.

Q5 (Tooling, Select TWO). A team packages their app as a Helm chart, pushes it as an OCI artifact to their container registry, and configures Flux to reconcile straight from that OCI URL instead of a Git repository. Which TWO tooling competencies does this combination demonstrate?

Check the answer

A and B. Flux still pulls, diffs, and applies from the OCI source exactly as it would from Git — the state-store choice doesn't touch any principle. C, D, and E are all distractors unrelated to what's actually happening.

Q6 (GitOps Principles). A reconciler has automated sync enabled but its polling interval is set to 6 hours with no webhook configured. A change merges to main; for nearly six hours the running system doesn't yet reflect it. Does this long interval, by itself, violate any of the four principles?

Check the answer

C. "Continuous" means always operating, not "fast" — a slow but genuinely ongoing, self-initiated loop still satisfies the principle, even if it's a poor operational choice.

Q7 (GitOps Terminology). Which pairing correctly matches each term to its role in a single reconciliation cycle?

Check the answer

B. Declare, diverge, correct, report — in that order, and each word names exactly one step, not two.

Q8 (GitOps Patterns). A rollout launches a full parallel set of new-version instances (matching 100% of current capacity) behind a separate temporary endpoint, runs automated smoke tests against it, then flips the load balancer to send all production traffic to the new set — with the old set kept running, untouched, as a fast-revert option. Which named pattern is this, and what is it explicitly not?

Check the answer

A. Two full environments and a single-step cutover is the defining shape of blue/green — a canary's defining shape is a controlled, progressively-increasing fraction of real traffic instead.

Q9 (Related Practices). A DevSecOps review flags that the state store contains a NetworkPolicy and a Kyverno ClusterPolicy alongside application Deployments, all reconciled by the same Argo CD instance. Is bundling policy-as-code into the same GitOps loop as application manifests coherent, or a violation?

Check the answer

B. Nothing about the four principles or Related Practices restricts what kind of resource the loop is allowed to manage.

Q10 (Tooling). An Argo CD Application specifies source.chart pointing at a Helm chart hosted in a chart repository (not Git), with destination targeting a specific cluster and namespace. Is this still a valid GitOps configuration?

Check the answer

B. The reconciliation loop is indifferent to which addressable, versioned source it's pulling from.

Q11 (GitOps Principles). System X: changes are proposed via pull request, merged, and an in-cluster agent polls and applies them, with drift correction disabled after the initial apply. System Y: changes are applied directly via a CI job's kubectl apply on every merge, but a separate always-running sidecar in the cluster continuously diffs live state against the last-applied manifest and reverts drift every 30 seconds, forever. Which system satisfies more of the four principles?

Check the answer

B. Two systems can each look "mostly compliant" while failing entirely different principles — this is the shape of question this paper leans on hardest.

Q12 (GitOps Terminology). A junior engineer says: "State drift is bad, so a GitOps system should be designed to make drift impossible." Why is this framing subtly wrong?

Check the answer

B. The system is designed to tolerate and correct drift continuously, not to make drift structurally impossible.

Q13 (GitOps Patterns). A reconciler runs in "server-side apply" mode purely for merge-conflict-safe field ownership when multiple controllers touch the same resource. Does apply mode change whether the system is pull-based, event-driven, in-cluster, or external?

Check the answer

B. Don't let an unrelated implementation detail get mistaken for one of the two axes actually being tested.

Q14 (Related Practices, Select TWO). A team wants their CI pipeline to never hold long-lived cluster credentials, and their secrets to never appear as plaintext anywhere in Git history. Which TWO practices, both part of Related Practices, directly support these two goals respectively?

Check the answer

A and B. Each goal maps to a distinct, named practice — don't let C or E, which solve different problems entirely, distract you.

Q15 (Tooling). A described state store is a versioned object-storage bucket (not Git, not OCI) that a custom-built reconciler polls directly via a cloud provider API, applying any new object version found. Assuming the bucket genuinely enforces immutable versioning, does this qualify as a valid GitOps tooling choice?

Check the answer

B. Property, not product — and that includes the reconciler, not only the store.

Q16 (GitOps Principles). Rank these four systems from "satisfies the fewest principles" to "satisfies all four," assuming everything not mentioned is otherwise compliant: (i) desired state applied once via SSH script, never revisited; (ii) desired state pushed by CI on every merge, no ongoing drift correction; (iii) desired state pulled automatically once at startup only, no ongoing polling or watching afterward; (iv) desired state pulled automatically and continuously reconciled with self-heal on.

Check the answer

B. (ii) and (iii) fail the same principle for different reasons — reaching the same score by two different broken paths.

Q17 (GitOps Terminology). A system's Feedback Loop reports "Synced" even though the underlying State Reconciliation attempt silently failed due to an admission controller rejecting the change. What does this best illustrate about the relationship between these two terms?

Check the answer

B. A feedback loop that reports the wrong thing is worse than no feedback loop, because it manufactures false confidence.

Block 2 — Q18–34

Q18 (GitOps Patterns). A team runs Argo CD's ApplicationSet controller to automatically generate one Application per directory found under clusters/*/apps/* in their monorepo, so onboarding a new cluster is "add a directory, and an Application appears." Which architecture-pattern consideration does this most directly address?

Check the answer

B. Generating targets from a structure is a state-store-management technique, not a trigger or placement choice.

Q19 (Related Practices). Which statement most precisely describes where DevSecOps fits into Related Practices, as distinct from DevOps generally?

Check the answer

B. Woven in, not bolted on afterward, is the distinction the curriculum draws.

Q20 (Tooling). A reconciliation engine emits a metric an alerting rule watches, paging on-call the moment a sync transitions to Degraded. Which tooling competency, and which GitOps term, does this combination most directly connect?

Check the answer

B. A metric plus an alert is a machine-readable feedback loop, wired through the interoperability competency.

Q21 (GitOps Principles). A reconciler has selfHeal: true but is RBAC-scoped to modify resources in only one namespace; a manual edit occurs in a different namespace the reconciler was never granted access to. Is the resulting, uncorrected change in that second namespace a violation of Continuously Reconciled?

Check the answer

B. A principle only governs what was actually declared as part of the managed system in the first place.

Q22 (GitOps Terminology). Match each described behavior to the term it best represents: (i) an alert fires when a sync fails; (ii) a commit is reverted to restore a prior configuration; (iii) a running Service's selector no longer matches its Git-declared value; (iv) an agent notices (iii) and corrects it.

Check the answer

B. Alert → Feedback Loop; commit revert → Rollback; divergence → State Drift; correction → State Reconciliation.

Q23 (GitOps Patterns, Select TWO). A team wants a strategy that (1) never reduces total serving capacity below 100% at any point during rollout, and (2) allows an instant, single-step full revert with no gradual re-ramp required. Which TWO satisfy BOTH conditions at once?

Check the answer

B and C. Plain rolling (A) briefly reduces capacity; canary (D) and all-at-once (E) fail one or both conditions outright. Only blue/green and additional-batch rolling satisfy both requirements simultaneously.

Q24 (Related Practices). An auditor asks: "show me that every infrastructure change last quarter went through code review before being applied." Which Related Practices combination answers this almost for free, and why?

Check the answer

B. The review gate the state store already enforces doubles as the audit trail.

Q25 (Tooling). Comparing Argo CD's ApplicationSet and a Flux Kustomization with a multi-source generator, what do both mechanisms fundamentally exist to solve?

Check the answer

A. Both are, at bottom, generators — turning a small set of inputs into many managed objects.

Q26 (GitOps Principles). A system individually satisfies all four principles, but the desired state describes infrastructure for a database that the manifest never actually references — the "system" being managed doesn't correspond to anything real in production. Is this GitOps-compliant?

Check the answer

B. The four principles are a specification for how management happens — they say nothing about whether what's being managed is sensible, which is exactly the kind of scope-of-the-spec question this paper pushes on harder than Set 1 did.

Q27 (GitOps Terminology). Why does the curriculum define "Continuous" as a standalone term rather than folding its meaning entirely into "Continuously Reconciled"?

Check the answer

B. The word is doing general work across the whole loop, not just one step of it.

Q28 (GitOps Patterns). A canary analysis template checks p99 latency and error rate every 60 seconds, automatically aborting and rolling back the canary if either threshold is breached — with no human paged unless the automated abort itself fails. What does the automated abort most directly exhibit, beyond simply "progressive delivery"?

Check the answer

B. The same observe-then-act shape shows up here as it does in ordinary drift correction — just applied to a rollout metric instead of a resource diff.

Q29 (Related Practices). A team stores Kyverno ClusterPolicy resources in the same repo and loop as their application manifests, so a policy violation blocks a sync via admission control — and separately, Kyverno continuously scans already-running resources for policy drift. Which Related Practices idea does the admission-time check represent, and which does the continuous scan represent?

Check the answer

B. One checks before the change lands; the other keeps checking forever after — the same distinction that separates a one-shot apply from continuous reconciliation, applied to policy.

Q30 (Tooling). A reconciliation engine's own controller pods are deployed and updated via the exact same GitOps loop they operate — the reconciler manages its own manifests. What's the most direct risk this "self-managing" pattern introduces, and how do production setups typically mitigate it?

Check the answer

B. "App-of-apps" and similar self-managing setups are common, but they need an escape hatch precisely because of this risk.

Q31 (GitOps Principles). A system satisfies Declarative, Versioned and Immutable, and Pulled Automatically, but its reconciliation loop crashes on any transient network blip and doesn't restart without manual intervention — which happens, on average, once a week. On the days the loop is down, does the system still count as Continuously Reconciled?

Check the answer

B. Continuity is judged by what's actually happening, not by what would happen if the loop were healthy.

Q32 (GitOps Terminology, Select TWO). An internal wiki defines "Desired State" as "whatever is currently running in production" and "GitOps Managed Software System" as "the Git repository itself." Which TWO corrections bring these in line with the curriculum?

Check the answer

A and B. Both original definitions swap a term for its neighbor in the loop — the target for the actual, and the managed thing for the store that describes it.

Q33 (GitOps Patterns). A GitOps Managed Software System spans two clusters in two cloud regions, reconciled from one shared state store by two separate in-cluster reconciler instances, each scoped to its own cluster's directory. Compared to one external reconciler managing both centrally, name one advantage and one disadvantage of this design.

Check the answer

A. The same blast-radius-versus-visibility trade shows up again here, just phrased with two concrete instances instead of the abstract in-cluster/external framing.

Q34 (Related Practices). Why might "GitOps replaces the need for CI entirely" be a wrong answer on this exam, even though GitOps genuinely does replace a traditional CD deployment step?

Check the answer

B. GitOps replaces a step, not a whole discipline — a distinction worth being precise about.

Block 3 — Q35–50

Q35 (Tooling). A team concludes: "Argo CD is 'more GitOps' because it has an official UI showing sync status, while Flux, being just controllers, is 'less GitOps.'" What's wrong with this conclusion?

Check the answer

B. Presentation and compliance are different questions entirely.

Q36 (GitOps Principles). A team wants to prove, to an auditor, that production has been "Pulled Automatically" for six months with zero manual applies. Which artifact would most directly support that claim?

Check the answer

B. Pulled Automatically is a claim about who initiates the apply — provable only from the reconciler's own record of initiating it.

Q37 (GitOps Terminology). A postmortem reads: "The incident was caused by state drift that our feedback loop reported, but by the time state reconciliation kicked in, the desired state itself had already been rolled back to fix an unrelated issue — so reconciliation converged the system to the wrong target." Is anything in this account actually out of order?

Check the answer

A. The trap here is assuming a question must be hunting for an error — sometimes the correct answer is that a convoluted-sounding account is actually using every term correctly.

Q38 (GitOps Patterns). A team debates whether "GitOps applied to database schema migrations" is coherent, given that a migration feels inherently imperative — you can't simply "reconcile" a schema back to an old version without running a down-migration. What's the most accurate resolution?

Check the answer

B. The same reasoning that makes a canary's Rollout object "just more desired state" applies here — the store holds a target, not a procedure, even when the underlying mechanics are imperative.

Q39 (GitOps Principles). System A uses a webhook-only trigger with no fallback polling at all — a lost webhook is never retried or caught by anything else. System B uses a webhook for fast triggering plus a periodic poll as a fallback. Which single principle do these two otherwise-identical systems differ on?

Check the answer

B. Event-driven-only, with no pull fallback, is the one configuration that actually does break a principle — not because events are used, but because nothing pulls when events fail.

Q40 (GitOps Terminology). Which single word, if removed from the curriculum's description of the GitOps loop, would make "a script that runs once, applies desired state perfectly and correctly, and then exits forever" indistinguishable from full compliance?

Check the answer

B. That one word is carrying the entire weight of the fourth principle.

Q41 (GitOps Patterns). A "shadow" deployment sends the new version a mirrored copy of production traffic for testing, but its responses are discarded and never returned to real users, while the old version continues serving all real responses. How does this relate to the deploy/release distinction?

Check the answer

B. Deploy and release can separate further than a canary shows — shadow traffic is deploy pushed almost as far from release as it can go.

Q42 (GitOps Principles). A reconciler's selfHeal only corrects drift on resources it directly manages via its own applied manifests. A separate admission webhook, unrelated to the reconciler, independently mutates a label on every Pod at creation — a label the state store never declares an opinion about. Six months later, an auditor calls this label mutation "uncorrected drift the reconciler is failing to catch." Is that characterization accurate?

Check the answer

B. You can't drift away from something that was never declared in the first place.

Q43 (Related Practices). A security review requires every change to a policy guardrail go through the same review process as an application deployment, with no separate, less-scrutinized path for "infrastructure-adjacent" changes. Which existing mechanism in a mature GitOps setup satisfies this essentially for free?

Check the answer

B. Treating policy as just another kind of desired state means it inherits every guarantee the store already provides.

Q44 (GitOps Principles). Two engineers argue about whether a reconciler that acts only on every resource-watch event, with no periodic resync at all, is "more continuous" than one combining watch events with a periodic resync every 5 minutes. Who has the stronger case?

Check the answer

B. "Reacts fast" and "keeps checking regardless" are different properties, and only the second one is what the principle actually requires.

Q45 (GitOps Terminology). A GitOps Managed Software System spans application workloads, a cluster's node pool configuration (via a Cluster API resource), and a cloud load balancer (via a Crossplane claim), all reconciled from the same repository. Does the term only apply to application-layer resources?

Check the answer

B. The term is defined by what's being reconciled, not by which layer it happens to sit at.

Q46 (GitOps Patterns). A "dark launch" deploys a new feature fully into production, gated entirely behind a feature flag that's off for all users, with no traffic-shifting or environment-switching involved at all — just code sitting inert. Where does this sit relative to deploy/release, and is the gate closer to Configuration as Code or a rollout controller's job?

Check the answer

B. Deploy-without-release can be implemented by an entirely different mechanism than a rollout controller — a flag value is enough.

Q47 (GitOps Principles). Which of the following would represent a genuine architectural inability to ever be Continuously Reconciled, as opposed to merely a bad default configuration that could be changed?

Check the answer

C. A and B are configuration choices, changeable without touching the engine's architecture; only C describes a genuine structural incapacity to ever continuously reconcile.

Q48 (GitOps Principles). A reconciler correctly implements Declarative, Versioned and Immutable, and Pulled Automatically. Its drift correction, however, only ever restores resources deleted out-of-band — it silently ignores drift caused by a modification to an existing resource's fields (someone hand-changing a Deployment's image tag persists forever, uncorrected). Does this partial drift correction still satisfy Continuously Reconciled?

Check the answer

B. "Does something" and "fully reconciles" are not the same claim.

Q49 (GitOps Principles, Select TWO). A new engineer proposes: "Store manifests in Git, full history kept. Whenever anyone wants to deploy, they open the Argo CD UI and manually hit Sync — deliberately, so a human always makes the final call. Once synced, leave self-heal off, so if someone needs to hand-fix something in an emergency, their fix survives and isn't reverted." Which TWO principles does this deliberately designed workflow fail, and are those failures accidental or intentional?

Check the answer

B. Deliberate design choices can still be principle violations — good intent doesn't change compliance, which is precisely what makes this trap effective in practice, not just on paper.

Q50 (GitOps Principles). Q1 of this paper described a system where prune ran on sync but selfHeal was off, leaving field-level drift uncorrected between syncs. Which single configuration change would most directly convert that system into one satisfying all four principles, assuming everything else was already compliant?

Check the answer

B. The paper closes the way it opened — same gap, now named and fixed.

Score yourself

☺ Like you're 10: Count your correct answers out of fifty, turn it into a percentage against the real 75% pass mark, then look at which domain cost you the most points — and compare it to your Set 1 domain scores if you kept them.

The Linux Foundation's Multiple Choice Exam FAQ states that a score of 75% or above is required to pass any LF multiple-choice exam, and the CGOA is one. Treat 75% here as a target to clear comfortably, not a calibrated prediction of the real sitting — this paper's wording is ours, not the CNCF's, and it isn't tuned to match the real exam's difficulty.

DomainQuestions in this paperYour scoreIf you're under two-thirds, go here
🤖 GitOps PrinciplesQ1, 6, 11, 16, 21, 26, 31, 36, 39, 42, 44, 47, 48, 49, 50/15GitOps philosophy
🐰 GitOps TerminologyQ2, 7, 12, 17, 22, 27, 32, 37, 40, 45/10Glossary
🦫 GitOps PatternsQ3, 8, 13, 18, 23, 28, 33, 38, 41, 46/10The Argo ecosystem
🦉 Related PracticesQ4, 9, 14, 19, 24, 29, 34, 43/8IaC & control planes
🤖 ToolingQ5, 10, 15, 20, 25, 30, 35/7Argo CD & Flux
Total50 questions/5075% (38/50) to clear comfortably

If you sat Set 1 first, put both domain breakdowns side by side. A domain that improved is a gap you actually closed. A domain that's still weak in the exact same place is the one thing worth another full read before you book anything — a single paper's weak domain could be noise, but the same weak domain twice, on two independently written papers, essentially never is. A domain that was fine on Set 1 but wobbled here is worth a second look too — this paper's layered questions test the same material from a less forgiving angle, so a wobble here can surface a shallow understanding Set 1's more direct questions didn't catch.

Where each domain is taught

☺ Like you're 10: Same pages as Set 1 — every question above traces back to one of a handful of pages. Go back to the page, not to the wider internet.

Nothing in this paper examines anything that isn't covered somewhere on this course. Where a domain is genuinely GitOps-specific, the pages live right here on Golden Astronaut; where it's general platform-engineering ground shared with GitOps rather than unique to it, the deeper read lives on the sibling Platform Engineering CGOA overview, which covers the same five domains from the other side of the trio.

Beyond the domain pages, the wider revision kit still applies: flashcards for the vocabulary, the self-check quiz for mixed recall, the glossary for anything a question assumed you already knew, and the CGOA study plan for how to sequence all of this against your remaining prep time.

🎬 At Mission Control
🐰

Remy: Forty-six out of fifty this time! And Principles is finally clean — no more push-and-forget pipelines getting past me.

🤖

Recon: BEEP. Confirmed — Principles held. So which domain hid the other four, Remy?

🐰

Remy: ...Patterns. The blue/green versus canary versus shadow-deployment ones. I kept mixing up which one keeps old capacity fully running.

🦊

Foxy: Wait, there's a third one now? I only just learned two existed.

🤖

Recon: A shadow deployment is deploy-without-release taken to its logical extreme — no traffic ever reaches a real user. Worth its own read before either of you sits anything else.

👺

Gizmo: Or just remember "they're all basically ship-it" and move on. Close enough! 😈

🐢

Timmy: That sentence is exactly why Patterns is worth 20% on its own, Gizmo. "Basically the same" is precisely the distinction this domain tests.

🐰

Remy: Fine — the Argo ecosystem page, properly this time. No more guessing blue/green versus canary from vibes.

🐢 Timmy's checkpoint

1. Name the five CGOA domains and their weights, in weight order. 2. A reconciler has prune: true but selfHeal: false — what kind of drift does it correct, and what kind does it silently miss? 3. Describe one way two systems can each satisfy three of the four principles while failing two entirely different ones. 4. What's the difference between an in-cluster and an external reconciler, and name one trade-off of each? 5. Why doesn't a webhook-only trigger with no polling fallback fully satisfy Continuously Reconciled? 6. What's the difference between "deploy without release" as a canary demonstrates it, versus as a dark launch or shadow deployment demonstrates it? 7. Name one thing this exam publishes officially and one thing it deliberately does not.

Check your answers
  1. GitOps Principles 30%; GitOps Terminology 20%; GitOps Patterns 20%; Related Practices 16%; Tooling 14%.
  2. With prune: true, deletions from desired state are corrected — but only when a sync runs. With selfHeal: false, drift from a manual field edit is never corrected on its own, since nothing is watching for it between syncs.
  3. One pushes instead of pulling (an external actor applies the change) while otherwise reconciling continuously; another pulls automatically but only ever applies once, with no ongoing drift correction. Both look "mostly compliant" while failing different principles for different reasons.
  4. In-cluster: runs inside the system it manages, typically scoped to one cluster — smaller blast radius, no fleet-wide view. External: runs outside, often managing many targets from one control point — central visibility and control, at the cost of holding credentials for every managed target.
  5. Because reconciliation is then only as continuous as webhook delivery is reliable — a permanently lost webhook with no fallback means that change, and any future drift, is never corrected at all. A periodic poll preserves the "always eventually correcting" guarantee independent of whether any event arrives.
  6. A canary keeps deploy and release separate via a rollout controller's traffic-shifting logic. A dark launch or shadow deployment separates them even further — using a feature flag (Configuration as Code) or discarded mirrored traffic, with no traffic-shifting mechanism involved at all.
  7. Officially published: the 90-minute duration and the 75% pass mark (from the Linux Foundation's Multiple Choice Exam FAQ). Not published: the real question count — any third-party figure for it is unverified. Confirm both, and everything else, on the official Linux Foundation CGOA page and the CNCF certification page before you register.

That's both papers. If you're clearing 75% or better on Set 1 and Set 2 alike, with no domain sagging on both, you have real, cross-checked evidence you're ready — not just one good day. If a domain still sags on both, reread it properly, give it a day to settle, and only then book the real thing.

⏱️ The two CGOA papers

Set 1 · Set 2 (you are here). Both are fifty questions on the same 15 · 10 · 10 · 8 · 7 domain split, so the scores are directly comparable — Set 1 leans on definitions and single-principle scenarios, Set 2 leans harder into layered, multi-clue traps. See the CGOA study plan for where each paper fits against your remaining prep time, the practice-question bank for shorter drills in between, and CGOA — the exam for the full domain writeup and official logistics.