CI/CD, Release Engineering & GitOps
46 questionsDONEUNLOCKEDLOCKED
CI/CD, Jenkins & GitOps Interview Questions
Pipeline design and caching, artifact promotion, rolling versus blue-green versus canary and what each costs, progressive delivery with Argo Rollouts and Flagger, ArgoCD and Flux reconciliation, and the DORA metrics behind them.
Grounded in researched DevOps, SRE and platform engineering interview loops, written to a senior-engineer editorial bar, and never padded to hit a word count.
You have 10 free answers unlocked here.Sign in free for 10 more · 26 are premium.
01–19Foundationsthe words and mechanisms every loop takes as given0/19 done
20–36Core loopsthe questions every loop actually asks0/17 done
37–46Field scenariosthe half-specified problems a real estate throws at you0/10 done
The concepts behind CI/CD, Release Engineering & GitOps
The ideas from the curriculum that these questions take as given. The foundations are open to everyone; the ones that decide a senior round sit behind Premium.
Core
GitOps: reconciliation, not deploymentGitOps is the Kubernetes control loop applied to your deployments: a controller compares live resources to versioned desired state and reconciles configured differences. The distinction from a pipeline that runs kubectl apply is not tooling preference. It changes what happens when someone edits the cluster directly, and it changes who holds cluster credentials.Sign in
Foundational
Deploying is not releasingDeployment puts code on a machine. Release exposes behaviour to a user. Treating them as one event is why rollbacks are frightening, why releases happen at night, and why a bad feature requires an emergency deploy instead of a config change.Foundational
Build once, and let the artifact be the unit that movesIndependent builds can differ even at the same commit. Promoting one artifact by digest makes it clear which bytes were tested, while configuration and runtime differences still need validation.Foundational
Delivery metrics: measure rework alongside speedA team can deploy more often because it ships useful changes or because it keeps repairing broken ones. DORA's five-metric model separates delivery throughput from instability so those two stories do not look identical.