惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
爱范儿
爱范儿
月光博客
月光博客
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
T
Tailwind CSS Blog
美团技术团队
D
Docker
V
Visual Studio Blog
Martin Fowler
Martin Fowler
博客园 - 聂微东
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your Next DevOps Interview Just Got Easier
Krishna Fatt · 2026-05-11 · via DEV Community

DevOps interviews are not like other interviews.
You don't just get asked "what is a pod" or "what does S3 stand for." You get asked to think out loud. Walk me through how you'd debug a service that's returning 503s in production. What would you check first if your Kubernetes nodes are NotReady at 2am? How do you handle a Terraform state conflict when two engineers applied at the same time?
Most interview prep resources aren't built for that. They're flashcard decks. Multiple choice questions. Definition lists. None of that prepares you for the moment an interviewer says "okay, now walk me through it."
That's the gap I was trying to close.

What I Built

A few months ago I started building a GitHub repo called devops-cloud-interview-scenarios.
The idea was simple: scenario-based questions, written the way interviewers actually ask them, with plain-language answers and follow-up questions included. Not definitions. Not theory. Actual situations you'd face in a real role.
The repo now has 770+ scenarios across 11 domains — Kubernetes, AWS, CI/CD, Terraform, Docker, Linux/SRE, Observability, Networking, Security, Git, and General DevOps. Every scenario is tagged by difficulty: L1 for fresher-level, L2 for mid-level, L3 for senior.

A few examples of what a scenario looks like:

Situation: Your team just migrated a monolith to microservices on Kubernetes. Two weeks after go-live, intermittent latency spikes appear with no obvious pattern. How do you approach this?

Situation: A Terraform apply is failing with "Error acquiring the state lock." Another engineer says they didn't run anything. What do you do?

Situation: Your CI pipeline is passing but the production deployment is failing silently — the pods start, pass health checks, then crash ten minutes later. Walk me through your debugging approach.

That's the format. Situation, what the interviewer is really testing, a structured answer, and follow-up questions that a good interviewer will actually ask next.

github.com/Techikrish/devops-cloud-interview-scenarios

The Repo Needs Your Scenarios

Here's something I want to be upfront about.
I built this from my own research and learning. But the best scenarios in this kind of resource come from people who've actually lived through these situations who've been on-call when things broke, who've sat in post-mortems, who've hit edge cases that no documentation prepared them for.
If that's you, the repo needs what you know.
The domains where gaps are most visible right now are Observability, Networking, and Security. Real Prometheus alerts that turned out to be something completely unexpected. Networking failures that took hours to trace. Security incidents that taught you something the certifications never covered.
Contributing is straightforward. Fork the repo, go to the domain folder that matches your experience, and add your scenario in the standard format — situation, what the interviewer is testing, a plain-language answer, follow-up questions, and an L1/L2/L3 tag. Open a PR and the duplicate-check GitHub Action runs automatically. Full details in CONTRIBUTING.md.
You don't need to write fifty scenarios. Five genuinely good L2 questions from someone who's lived through them are more valuable than fifty generic ones. If you've had an incident that taught you something real, that's a scenario worth adding.

Why I Built a Website on Top of It

The repo works well on a laptop. It's not great on a phone.
And phones are where most people actually do interview prep on a commute, during lunch, the night before a call. The markdown format that looks clean on GitHub becomes a scroll-fest on mobile. There's no search. No filtering by difficulty. No way to jump straight to Kubernetes L2 scenarios without digging through folders.
So I built a proper web interface on top of the same content.

techikrish.github.io/devops-cloud-interview-scenarios

Search across everything. Type "crashloopbackoff" or "terraform state lock" or "prometheus scrape" and it surfaces the relevant scenarios instantly — across all 770+ questions. No folder navigation, no scrolling past irrelevant content.
Difficulty filtering. One click to switch between All, L1, L2, and L3. If you have an interview next week for a senior role, you filter to L3 and work through just those. If you're early in your career and want to build confidence first, start at L1.
Domain picker. Select any of the eleven domains from a clean UI. Pick Terraform and see only Terraform scenarios. Pick Observability and see only Observability scenarios.
Fast, no friction. It's a static site on GitHub Pages. No login, no account, nothing to install. Open it and start practicing.
The difference between a resource you save and one you actually use is usability. The site is built for the second kind.

The Android App Is Coming

The Android app is currently under review on the Google Play Console.
Same content, same search and filter, but native on Android and completely offline. No WiFi needed, no data, no load times. Just open it and practice on the metro, in a waiting room, anywhere.
I'll post an update here on DEV the moment it clears review.

Find Everything

| 🌐 Website | techikrish.github.io/devops-cloud-interview-scenarios |
| ⭐ GitHub Repo | github.com/Techikrish/devops-cloud-interview-scenarios |

Android App Under review on Google Play — coming soon

The goal is simple: build the interview prep resource
One built around real situations, not definitions. One that gets better as more engineers who've actually worked in these environments contribute to it.
If this is useful to you star the repo, share it with someone who has an interview coming up, or contribute a scenario from your own experience. That's how this gets better for everyone.