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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
Docker
GbyAI
GbyAI
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
C
Check Point Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
博客园 - Franky
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Last Week in AI
Last Week in AI
L
LangChain 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
The 54-point production deployment checklist that saves y...
Fabrício Peloso · 2026-05-31 · via DEV Community

You've been there.

A deploy that seemed fine. Then the error rate spikes. Then Slack blows up. Then you're doing a rollback at 2am, cold coffee in hand, explaining to your manager what went wrong.

Most production incidents aren't caused by bad code. They're caused by skipped verifications under pressure.


Why I built this

I come from industrial automation before moving to DevOps. In that world, systems run 24/7. Downtime isn't a Jira ticket — it's a financial event. You do not skip a step. Ever.

When I moved into cloud infrastructure, I was genuinely surprised at how informal most deployment processes are. Smart engineers, running entirely on mental checklists, under pressure, with no formal verification step.

So I built the checklist I wish I'd had from day one.


What's in it

54 verifications across 4 phases, structured so they appear at exactly the moment you need them:

Phase 1 — Pre-deployment (18 checks)

The checks that matter most:

  • PR approved by 2+ reviewers (not just one tired senior at EOD)
  • CI fully green: unit, integration, e2e, SAST scan
  • DB backup confirmed and tested — not just "the scheduled backup should have run"
  • Migrations tested on staging with rollback also tested
  • Rollback plan documented with estimated time under 10 minutes
  • Feature flags set to off-by-default in production
  • Monitoring and alerts confirmed active for the service

Phase 2 — Execution (14 checks)

  • Zero errors in the first 60 seconds — this is when problems are easiest to catch
  • Health checks passing on all replicas, not just the first few
  • P95 latency within SLA throughout the rollout
  • Feature flags enabled progressively: 5% → 25% → 100%

Phase 3 — Post-deployment (14 checks)

  • Error rate stable for 15 continuous minutes
  • Smoke tests on the critical user paths: login, main API, checkout
  • Business metrics normal — transactions/min, conversion rate, active users
  • 24-hour observation period with an assigned on-call engineer

Phase 4 — Rollback (8 checks)

If you're here, something went wrong. This phase is designed for the worst moments — when you're stressed, when everyone is watching, when every second costs money. The procedure is linear. You don't need to think. You just follow the steps.


What it looks like in practice

It's a single HTML file. Open it in any browser. Works offline.

Before each deploy:

  1. Fill in the service name, version, owner, environment, and maintenance window
  2. Work through the checklist, checking items as you go
  3. The progress bar shows where you are
  4. Critical items are visually flagged — you can't accidentally skip them
  5. When everything is checked, the status bar turns green: "All verifications complete. Deployment approved for production."
  6. Export a one-click .txt report for audit trail or post-mortem documentation

No SaaS. No subscription. No account. Just a file that opens and works.


The honest truth about checklists

Checklists work. The evidence is unambiguous.

Aviation reduced fatal accidents dramatically after standardizing pre-flight checklists. Surgical teams reduced complications significantly after implementing standardized surgical checklists. The same principle applies to software deployments.

The problem isn't that engineers don't know what to check. It's that under pressure, with context-switching and deadlines, the mental checklist gets compressed. Items get skipped. Usually nothing happens. Until it does.

A physical checklist removes the cognitive load from the critical moment. You're not trying to remember. You're just following a list.


Get it

The full checklist is available here: Production Deployment Checklist — $19

If it prevents one incident, it will have paid for itself several hundred times over.


If you have a verification I missed — things you've learned the hard way — drop them in the comments. I'll incorporate the best ones into the next version.


Tags: #devops #deployment #productivity #kubernetes #sre #cicd #infrastructure