ARAsish Rowloinkubernetesk8s.hashnode.dev·Sep 22, 2025 · 3 min readRC → RS → Deployment transition.🔹 Kubernetes: Replication & Scaling 1. Scaling Why Scaling? Normal days: 3 Pods can handle ~300 users. During sales/high traffic: More Pods needed. When traffic reduces: Scale down Pods to save resources. Types of Scaling: Manual Scaling → k...00
ARAsish Rowloinkubernetesk8s.hashnode.dev·Sep 17, 2025 · 2 min readMinikube/Kubectl/Pod🚀 Minikube + kubectl + Pod Setup on EC2 ✅ Prerequisites EC2 instance: c7flex.large (or any with ≥ 2 vCPU, ≥ 2 GB RAM, ≥ 20 GB storage) OS: Ubuntu 22.04 / Amazon Linux 2 Access: SSH into the instance as ec2-user or Linux 1. Install Docker yum i...00
ARAsish Rowloinansible-master-and-slave.hashnode.dev·Aug 30, 2025 · 3 min readAnsibleAnsible is an open-source automation tool used for: Configuration Management – Installing and configuring software on servers. Provisioning – Setting up infrastructure (e.g., servers, cloud instances). Application Deployment – Deploying code/appli...00
ARAsish Rowloindockercontainer.hashnode.dev·Aug 30, 2025 · 7 min readDockerDocker we call as containerization 🔹 What is Docker? Docker is an open-source platform that helps you build, package, and run applications in containers.A container is a lightweight, portable unit that bundles: Application code Runtime Libraries ...00
ARAsish Rowloindockercontainer.hashnode.dev·Aug 30, 2025 · 3 min readDocker BasicsCheck version docker --version Get system-wide info docker info 🔹 Images List images docker images Download image docker pull <image_name> Build image from Dockerfile docker build -t <image_name>:<tag> . Remove image docker ...00