TechOps Examples
Hey — It's Govardhana MK 👋
Welcome to another technical edition.
Every Tuesday – You’ll receive a free edition with a byte-size use case, remote job opportunities, top news, tools, and articles.
Every Thursday and Saturday – You’ll receive a special edition with a deep dive use case, remote job opportunities and articles.
Your cluster may be paying for CPU and memory that workloads rarely use—while your team still lacks the confidence to reduce allocations.
The ebook “How to Reduce Kubernetes Costs Without Breaking Your SLOs” provides a practical framework for finding waste across pods and nodes, understanding the risks of each change, and applying the right optimization policy to the right workload.
Find the waste hiding in your Kubernetes cluster.
PS! This is the reliability-first playbook for cutting K8s waste without the OOM kills, throttling, and 3am pages that come from optimizing blind.
IN TODAY'S EDITION
🧠 Use Case
Designing an AWS Machine Learning Architecture
👀 Remote Jobs
PulsePoint is hiring a Site Reliability Engineer
Remote Location: Worldwide
Outmarket is hiring a DevOps Engineer
Remote Location: India
📚 Resources
If you’re not a subscriber, here’s what you missed last week.
To receive all the full articles and support TechOps Examples, consider subscribing:
🧠 USE CASE
Designing an AWS Machine Learning Architecture
Have you ever wondered how Netflix recommends the perfect thumbnail, how Facebook automatically tags friends in photos, or how Instagram detects explicit content in photos?
Use cases like these can be built on event driven ML architectures with services like AWS Rekognition for image and video analysis.
Here is a sample serverless event driven pipeline designed to analyze uploaded media in real time.

1. User Upload via API Gateway
The pipeline starts when a user uploads an image/video from a frontend application.
This upload request is sent to an Amazon API Gateway endpoint.
API Gateway acts as a managed entry point, validating and routing requests to AWS Lambda.
2. Lambda Triggers Rekognition
Lambda receives the image/video data and metadata, then calls AWS Rekognition for analysis
3. AWS Rekognition Analysis
The Lambda function invokes AWS Rekognition APIs to perform image/video analysis.
Based on the use case, Rekognition applies multiple ML models, such as:
Object Detection – Identifies objects and their bounding box coordinates.
Scene Detection – Categorizes the image (e.g., beach, forest, cityscape).
Facial Analysis – Extracts age, gender, and emotion insights.
Content Moderation – Flags inappropriate or unsafe content.
Celebrity Recognition – Matches faces against a celebrity database.
Smart Image Tagging – Organizes objects into metadata categories.
4. Lambda Decides What to Do with the Image/Video
Based on the AWS Rekognition response, the Lambda function determines whether to store the image/video.
Two possible outcomes:
[a] If the content is appropriate:
The Lambda function uploads the media to an Amazon S3 bucket for persistent storage.
It then returns a success response via API Gateway, confirming the upload.
[b] If the content is inappropriate:
The Lambda function does NOT store the media in S3.
It returns a violation response via API Gateway, notifying the user about content restrictions.
Design Considerations for Scalability & Performance
[1] For large workloads, SQS can decouple requests and allow Lambda to process them asynchronously.
[2] Step Functions can orchestrate multi step processing workflows (e.g., Rekognition → Comprehend → Notification).
[3] Use S3 lifecycle policies to delete media after a certain period if it’s no longer needed.
[4] Restrict API Gateway endpoints with IAM policies, JWT authentication, or Cognito.
[5] Apply IAM least privilege to Lambda and S3 to prevent unnecessary access.
This Kubernetes ebook provides a practical framework for finding waste across pods and nodes, understanding the risks of each change, and applying the right optimization policy to the right workload.
🔴 Get my DevOps & Kubernetes ebooks! (free for Premium Club and Personal Tier newsletter subscribers)
Looking to promote your company, product, service, or event to 50,000+ DevOps and Cloud Professionals? Let's work together.



