Terraform CommandsInitialize Terraform: terraform init Initializes the working directory containing Terraform configuration files. This command downloads the necessary provider plugins. Validate Terraform configuration: terraform validate Checks the syntax and...Feb 21, 2024·2 min read
Exploring Docker: Essential Commands for Image and Container Management 🚀🐳Docker Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run including libraries, system tools,...Nov 29, 2023·2 min read
Python Data Types and Data Structures for DevOps🚀Today, let's dive into Python data types and data structures that are essential for DevOps. 🚀 Data Types Data types are the classifications of data items. In Python, everything is an object. Built-in data types include: Numeric (Integer, Complex, F...Nov 24, 2023·8 min read
A Beginner's Guide: How to Install Python and Understanding Data TypesWhat is Python? Python is an Open source, general-purpose, high-level, and object-oriented programming language. It was created by Guido van Rossum Python consists of vast libraries and various frameworks like Django, Tensorflow, Flask, Pandas, Ke...Nov 24, 2023·2 min read
Linux, Git-GitHub Cheat Sheet 🚀🐧🎉Linux Cheat Sheet🐧: Basic Commands pwd: Print working directory ls: List files and directories in the present working Directory cd: Change directory cd ..: Move up one directory mkdir: Create a new directory touch: Create an empty file cp: C...Nov 24, 2023·2 min read
Advance Git & GitHub for DevOps Engineers: Part-2 🚀Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different branch to work on something else, but you don't want...Nov 22, 2023·3 min read
Advance Git & GitHub for DevOps Engineers: Part1 🚀Git Branching Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a pull request. To show all Branches: git branch Create a new Branch: git branch <branch_name> Specific or C...Nov 22, 2023·1 min read