Security Tools
Cloud Providers
CI tools
Source Code
ITSM tools
Others
Articles
Azure Load Balancer
Azure load balancer Azure Load balancer will share the load among all the webservers by using round-robin method and it will not inspect the packets. It will use Layer 4(Transport Layer) in OSI model. Note: It will works as AWS NLB. Below are the OSI Layers: We have total 7 layers. L7 – Application Layer…
Create a VM in Azure Portal
Create a VM in Azure portal Login to shell.azure.com (if this the first time you are logging in then it will ask to create a storage account.) run the below commands to create a VM az vm create –resource-group HUBRG01 –name WEB1 –image UbuntuLTS –location eastus –vnet-name HUBVNET01 –subnet HUBSUBNET01 –admin-username rootadmin –admin-password “Password” –nsg…
Azure Traffic Manager
Load balancing | Traffic Manager Azure Traffic Manager is a DNS-based traffic load balancer. This service allows you to distribute traffic to your public facing applications across the global Azure regions. Traffic Manager also provides your public endpoints with high availability and quick responsiveness. Also called as Global load balancer. Requires DNS to be configure…
Application Gateway
Load balancing | Application Gateway Azure Application Gateway gives you application-level routing and load balancing services that let you build a scalable and highly-available web front end in Azure. You control the size of the gateway and scale your deployment based on your needs. It will comes under Layer 7(Application) in OSI model. We will…
Add VM’s to existing AV Set
Add VM’s to existing AV Set We do not have direct option to add the VM’s to Availability Set. We need to delete only vm not OS disk and NIC card and deploy the VM by using AV set option. We can perform this option by using powershell commands in Azure cloudshell. Below are the…
Azure Front Door and CDN profiles
Azure Front door and CDN profiles Azure Front Door is a secure cloud CDN which provides static and dynamic content acceleration, global load balancing and protection of your apps, APIs and websites with intelligent threat protection. AFD service is microsoft’s highly available and scalable web application accelaeration platform and global HTTP(s) load balancer. It provides…
Azure Availability Sets
Availability Sets Availability Sets An availability set is a logical grouping of VMs that allows Azure to understand how your application is built to provide for redundancy and availability. We recommended that two or more VMs are created within an availability set to provide for a highly available application and to meet the 99.95% Azure SLA.…
Jenkins
Jenkins is an open source automation server which enables developers around the world to reliably build, test, and deploy their software. Jenkins is an open source continuous integration/continuous delivery and deployment (CI/CD) automation software DevOps tool written in the Java programming language. It is used to implement CI/CD workflows, called pipelines. Official website:https://www.jenkins.io/ Setup Jenkins: Install Java development kit(JDK) Download…
Azure Storage
Azure storage Locally-Redundant Storage (LRS) LRS replicates data three times within one data center located in a primary region. When LRS is enabled, Azure Storage only registers write requests as successful once data is written to three replicas. LRS provides at least 99.999999999% durability for objects during a given year. LRS is offered at a…
Install and Configure Bamboo tool
This post describes how to install and configure the Bamboo tool which is used for Continuous Integration and Continuous deployment also called as CI/CD pipelines. There are various types of CI/CD pipelines and Bamboo is one of the tool which is being used for continuous deployments in the cloud environment. Below are the some of…