amitsinghs.hashnode.dev25 Real-World Scripting Tasks Every DevOps Engineer Should Know1. Monitor Disk Usage and Alert if Over 80% #!/bin/bash usage=$(df / | awk 'NR==2 {print $5}' | sed 's/%//') [ "$usage" -gt 80 ] && echo "Disk usage is above 80%! ($usage%)" 2. Clean /tmp Directory Older Than 7 Days #!/bin/bash find /tmp -type f -m...Apr 7, 2025·3 min read
amitsinghs.hashnode.devDevSecOps Pipeline Project: Deploy Netflix Clone on KubernetesGithub Link: See here LinkedIn Post Link: See here Deploy a Netflix-like application on AWS using DevSecOps practices. The project will involve Continuous Integration (CI) and Continuous Deployment (CD) using Jenkins, monitoring using Prometheus and ...Apr 3, 2025·16 min read
amitsinghs.hashnode.devAI-Assisted Shell Scripting – GenAI For DevOpsAI-assisted shell scripting. You might be wondering, why is this the easiest? read the blog and you’ll understand why AI-powered shell scripting is a game changer. What Is AI-Assisted Shell Scripting? Simply put, AI-assisted shell scripting means usi...Mar 27, 2025·4 min read
amitsinghs.hashnode.devAutomating Dockerfile Generation Using Python & Large Language Models (LLMs)Project Overview Imagine a Python script that automatically generates a Dockerfile based on the developer's input.For example: Input: Java → Output: Java-based DockerfileInput: Rust → Output: Rust-based DockerfileInput: Ruby on Rails → Output: Ruby o...Mar 21, 2025·6 min read
amitsinghs.hashnode.dev3-Tier Ultimate DevOps CICD Pipeline ProjectStep-by-Step Guide to Deploying a 3-Tier Yelp Camp Application with Database Integration Introduction to the 3-Tier Application A three-tier application consists of three layers: Frontend (Client-side UI) - The user interface where users interact w...Mar 11, 2025·13 min read