Setup Self Hosted Linux Agent in Azure DevOps
Let us learn how to create and configure a Self-Hosted Agent in Azure DevOps (ADO). What is an Agent? An agent is computing infrastructure with installed agent software that runs …
Let us learn how to create and configure a Self-Hosted Agent in Azure DevOps (ADO). What is an Agent? An agent is computing infrastructure with installed agent software that runs …
Automating infrastructure setup in Azure Cloud using Terraform and Azure DevOps is a powerful approach to managing your infrastructure as code (IaC). This allows you to define and manage your …
Configure the Azure provider provider “azurerm” {features {}} Create a resource group resource “azurerm_resource_group” “rg” {name = “my-resource-group”location = “westus”} Create a virtual network resource “azurerm_virtual_network” “vnet” {name = “my-virtual-network”address_space …
What is IaC? When you are new to the cloud, your early interactions are via the web portals such portal.azure.com for Microsoft Azure or aws.amazon.com for Amazon Web Services. This is ideal for at …
What is Apache Kafka? Kafka is a messaging system that collects and processes extensive amounts of data in real-time, making it a vital integrating component for applications running in a …
Logical Architecture Our installation is designed to have the Master-Node controlling the Worker Nodes. At the end of this installation, our logical architecture will look something like this. Master Node – This machine generally …
What is Docker? Before we begin, let’s describe what Docker is. Docker is a set of virtualization tools that allows us to create, test, and deploy containerized applications quickly and …