TerraWeek Day 2 - Familiarizing with HCL Syntax, variables, data types in TerraformSep 15, 2023·5 min read
TerraWeek Day 4 - Deep dive into Terraform StateWhat is Terraform State and why it is important? Terraform state is a service that maintains the resources configured by Terraform. It helps to track the changes done in the resources and manage them for smooth infrastructure provisioning. As it help...Sep 28, 2023·3 min read
Linux and Git-GitHub commands cheat-sheetLinux Commands : Linux creates a foundation for the activity of a DevOps engineer. So let's consolidate the popular and useful commands and their functions that have been used almost daily. Navigating the file system : cd <dir. name>: Change directo...Sep 8, 2023·3 min read
Deploying a Reddit-Clone application on Kubernetes with Ingress EnabledIn this blog, we will try to deploy a Reddit application on the Kubernetes cluster using the Kubeadm tool which is a built-in Kubernetes platform with all the k8s services. Cloning the Repo: We will clone the Reddit clone repo from GitHub, where all ...Sep 5, 2023·3 min read
Advance Git & GitHub for DevOps Engineers part 2Git Stash: The Git Stash command allows you to temporarily save your work in a working branch without committing it immediately. This is especially handy when you have changes that you'd like to preserve for later use while switching to a different t...Aug 25, 2023·5 min read
Advance Git & GitHub for DevOps Engineers.Git Branching: In the version control system "branch" refers to the separate line of workspace derived from the main code base. Each branch has its own set of commits and can be experimented with without hampering the main code base. in Git we called...Aug 15, 2023·5 min read
Basic Git & GitHub for DevOps Engineers.What is Git? Git is a distributed version control system (DVCS) that allows you to track changes to any set of files. It is widely used in the software development industry. With Git, you can maintain a record of all changes made to your files and ea...Aug 7, 2023·5 min read
Understanding package manager and systemctlIntroduction of Packages in Linux: Packages are essentially the specifications of an application. An application can be either a GUI application or a command line application. The metadata of that particular application is stored as a package, which ...Aug 1, 2023·3 min read