- TechOps Examples
- Posts
- Kubernetes Patterns - Part 2
Kubernetes Patterns - Part 2
TechOps Examples
Hey β It's Govardhana MK π
Along with a use case deep dive, we identify the remote job opportunities, top news, tools, and articles in the TechOps industry.
π Before we begin... a big thank you to today's sponsor SUPERHUMAN AI
Find out why 1M+ professionals read Superhuman AI daily.
In 2 years you will be working for AI
Or an AI will be working for you
Here's how you can future-proof yourself:
Join the Superhuman AI newsletter β read by 1M+ people at top companies
Master AI tools, tutorials, and news in just 3 minutes a day
Become 10X more productive using AI
Join 1,000,000+ pros at companies like Google, Meta, and Amazon that are using AI to get ahead.
IN TODAY'S EDITION
π§ Use Case
Kubernetes Patterns - Part 2
π Top News
π Remote Jobs
Automatiq is hiring a Junior DevOps Engineer
Remote Location: Worldwide
SS&C is hiring a Cloud Operations Engineer (Kubernetes & AWS)
Remote Location: India
ποΈ Resources
π’ Reddit Threads
π οΈ TOOL OF THE DAY
finders keypers - An open source tool to discover the usage and blast radius of encryption keys in AWS.
Supports both AWS Customer Managed KMS Keys and AWS Managed KMS Keys.
π§ USE CASE
Kubernetes Patterns - Part 2
Few editions ago, we discussed Kubernetes Patterns - Part 1 covering
Init Container, Sidecar, Ambassador, Adapter, Controller, Operator
Letβs look into a few more crucial patterns every Kubernetes practitioner should know in this Part 2.

Download a high resolution copy of this diagram here for future reference.
1. Singleton Application
Some applications require that only one instance is active at a time, with others remaining in a passive or standby state.
Use cases: Leader-election apps, primary-replica DBs
Implementation approach:
Use Kubernetes Lease API (
coordination.k8s.io/v1
) for leader electionStore lock state in etcd/Zookeeper to prevent split-brain scenarios
Define PodAntiAffinity to distribute instances across nodes
2. Batch Job
Batch workloads are non continuous tasks that run to completion. Kubernetes provides Jobs and CronJobs to manage these workloads by ensuring execution, retries, and cleanup.
Use cases: Data processing, ETL, backups
Implementation approach:
Use Job (
batch/v1
) for one-time executionUse CronJob (
batch/v1
) for scheduled tasksSet
backoffLimit
to control retry attemptsUse
ttlSecondsAfterFinished
for automatic cleanup
3. Service Discovery
Microservices running in Kubernetes need a reliable way to communicate with each other. Kubernetes Service objects provide built-in discovery mechanisms for internal and external traffic routing.
Use cases: Microservices, backend APIs
Implementation approach:
Use ClusterIP Service for internal traffic (
cluster.local
DNS resolution)Use Headless Service (
clusterIP: None
) for pod-to-pod direct communicationDeploy an Ingress Controller (NGINX, Traefik) for external routing
4. Stateful Service
Unlike stateless applications, stateful workloads require persistent storage and stable network identities. Kubernetes StatefulSet ensures ordered deployment, unique pod names, and persistent storage attachments.
Use cases: Databases (PostgreSQL, MongoDB), Kafka
Implementation approach:
Deploy StatefulSets (
apps/v1
) for ordered scaling and stable pod namesUse PersistentVolumes (PVs) with
volumeClaimTemplates
for per-pod storageDefine Headless Services for direct pod addressing
5. Self Healing Systems
Kubernetes continuously monitors the state of pods and ensures they match the declared state by replacing failed instances automatically.
Use cases: High-availability applications, Multi replica workloads
Implementation approach:
Define Liveness Probes to restart stuck containers
Use Readiness Probes to ensure traffic is routed only to healthy pods
Leverage ReplicaSets and Deployments for automated recovery
Configure PodDisruptionBudgets (PDBs) to limit voluntary disruptions
6. Health Probe
Determines pod health and take corrective actions such as restarting or removing it from service endpoints.
Use cases: Prevent routing to failing pods
Implementation approach:
Use Liveness Probe (
/health
) to restart unresponsive containersUse Readiness Probe (
/ready
) to control traffic exposureUse Startup Probe for applications with long boot times
These patterns provide structured approaches to solving common challenges in distributed systems.
Select the right pattern based on your workload characteristics to realize optimal performance, resilience, and scalability.
I run a DevOps and Cloud consulting agency and have helped 17+ businesses, including Stanford, Hearst Corporation, CloudTruth, and more.
When your business needs my services, book a free 1:1 business consultation.