Skip to main content
The Kit Review
LatestCategoriesAboutNewsletter
The Kit Review

Writing on design, code, and the craft of shipping software.

Read

  • Latest
  • Categories
  • About
  • Newsletter
  • Search

Sections

  • Technology
  • Design
  • Engineering
  • AI & ML

Subscribe

Get new essays in your inbox.

© 2026 The Kit Review. All rights reserved.

RSS FeedSitemapAdmin Panel
devops Edit

Kubernetes for Small Teams: You Probably Don't Need It

An honest assessment of when Kubernetes makes sense and when simpler alternatives like Docker Compose, Railway, or Fly.io will serve you better.

JO
James Okonkwo
June 18, 2026·6 min read
Kubernetes for Small Teams: You Probably Don't Need It

The Kubernetes Hype

Every tech conference talks about Kubernetes. Every job posting lists it. But for teams under 20 engineers, it's usually overkill.

When You Don't Need K8s

If your app: - Has fewer than 10 services - Doesn't need auto-scaling beyond basic rules - Has a small ops team (or no dedicated ops team) - Deploys less than 50 times per day

Then you probably don't need Kubernetes.

Better Alternatives

For simple deployments: Railway / Fly.io

bash
# Deploy to Fly.io
fly launch
fly deploy

Zero Kubernetes knowledge needed. Auto-scaling, SSL, and global distribution included.

For multi-service apps: Docker Compose

yaml
services:
  web:
    build: ./web
    ports: ["3000:3000"]
  api:
    build: ./api
    ports: ["8080:8080"]
  worker:
    build: ./worker

Tip

Docker Compose with a simple CI/CD pipeline handles 90% of what small teams need from Kubernetes.

When You DO Need Kubernetes

  • Scale: 50+ services or 100+ deployments/day
  • Multi-region: need pods running globally
  • Custom scheduling: complex resource allocation
  • Compliance: specific infrastructure requirements

The Middle Ground

If you're growing toward Kubernetes, start with managed services: - Google GKE Autopilot - AWS EKS with Fargate - Azure AKS

These remove the cluster management overhead while giving you the Kubernetes API.

Share
#docker#deployment#nodejs
JO

Written by

James Okonkwo

author

DevOps engineer and cloud architect. Writes about CI/CD, infrastructure as code, and Kubernetes. AWS and GCP certified.

Comments (1)

DO
Derek Olsen3 months ago

Controversial take, but I agree 100%. We wasted 6 months setting up K8s for a team of 5. Railway would have been perfect.

Keep reading

Read Docker for Frontend Developers: A Gentle Introduction
Docker for Frontend Developers: A Gentle Introduction

devops

Docker for Frontend Developers: A Gentle Introduction

You don't need to be a DevOps engineer to use Docker. Learn how containers can make your development workflow more reliable and portable.

JOJames Okonkwo·Jul 9, 2026
2,890
Read Advanced Git Workflows for Team Collaboration
Advanced Git Workflows for Team Collaboration

engineering

Advanced Git Workflows for Team Collaboration

Master trunk-based development, conventional commits, and automated releases. Plus: the rebase vs merge debate, settled once and for all.

MRMarcus Rivera·Jul 2, 2026
3,780
Previous

Prompt Engineering for Developers: Beyond Basic Chat

Next

Building a Real-Time Dashboard with Server-Sent Events