RGRama Grandhiindevopscommands.hashnode.dev·May 28 · 10 min readAWS Interview Quesions Beginner To AdvancedWhat is EC2? EC2 stands for Elastic Compute Cloud. It is an Infrastructure as a Service (IaaS) offered by AWS that provides scalable virtual machines called instances Difference between stop, reboot, 00
RGRama Grandhiingithub-actions-madesimple.hashnode.dev·May 1 · 9 min readGitHub Actions Beginner to Advanced📚What is CI/CD Before CI/CD, software development followed a traditional approach where multiple teams worked sequentially. The development team would write code and push it to repositories like GitHub00
RGRama Grandhiindevopscommands.hashnode.dev·Apr 26 · 4 min readLinux Interview questions beginner to expert ❤️How do you check disk space usage in Linux? df -h du -sh * // To check size in particular directory only top lvl du -ah . // Show size of file recursively Where are system logs stored? Most Linux log00
RGRama Grandhiinmastering-aws-cloud.hashnode.dev·Apr 21 · 8 min readInside AWS VPC: The Backbone of Cloud Infrastructure In Aws networking is one of the most important concepts to understand. Anyone working in Cloud or DevOps should know how traffic flows inside the AWS environment, because every service communicates th00
RGRama Grandhiindevopscommands.hashnode.dev·Apr 9 · 12 min readTerraform Interview questions basic to advanced 🔥What is Infrastructure as Code (IaC)? IaC is the process of managing infrastructure using code instead of manual steps.We define resources like EC2, VPC, S3 in code and provision them automatically. W00