How to Create Azure Resources with Terraform and GitHub and How to Migrate Terraform State to Terraform Cloud: A Step-by-Step Guide.May 7, 2025·3 min read
How to Create an AKS (Azure Kubernetes Cluster) Cluster Using Visual Studio Code: A Step-by-Step Guide.Apr 29, 2025·2 min read
A guide on setting up Prometheus, Grafana, and Alert Manager as endpoints.The Metrics Gatherer, Prometheus What it is:An open-source monitoring and alerting tool called Prometheus is made to gather time-series data, or metrics, from your infrastructure, services, and apps. Important attributes: Uses HTTP endpoints (/met...May 29, 2025·4 min read
Step-by-Step Guide to Create, Bind, and Mount Docker Volumes on LinuxVolumes in Docker allow you to persist data and share files between the host system and containers. Prerequisites: Docker installed on linux Step 1: Create a named volume. docker volume create my_volume Confirm that the volume has been created. dock...Apr 15, 2025·1 min read
Building a Docker file and pushing to Docker hubPrerequisites. Linux system with Docker installed Docker Hub account (free tier available) Step 1: Install Docker if not already installed with these commands: sudo apt-get update sudo apt-get install apt-transport-https ca-certificates curl software...Apr 14, 2025·2 min read
Pushing the application code to GitHub using Git Bash and Deploying the application to Azure App Service using Azure CLIWhen developing an application, it's essential to use version control and a reliable hosting service. In this blog, we'll cover how to: Clone the starter project (or create a new one). Initialize a Git repository using Git Bash. Stage, commit, and p...Mar 14, 2025·3 min read
Deploying EC2 Instances with Shared EFS Storage on AWS.Virtual machines (VMs) that operate on the Amazon Elastic Compute Cloud (EC2) service are known as EC2 instances. These instances offer scalable computing power for executing programs, hosting webpages, and carrying out mathematical operations. You m...Feb 19, 2025·3 min read
Blob storage/ SAS URL generation on azure.Blob Storage is a feature on Microsoft Azure that lets you store a lot of unstructured data on the cloud. "Blob" is an acronym for "Binary Large Object," and it is commonly used to store binary data and text, including backups, logs, documents, photo...Feb 5, 2025·4 min read
How to create an Azure virtual machine and how to initialize a data disk.Azure Virtual Machines (VMs) are scalable computing resources that allow users to deploy a wide range of applications and workloads. They provide flexibility without the need to purchase and maintain physical hardware. Here is a step by step guide on...Jan 10, 2025·2 min read