Terminology Resource: Any thing which you want to provision in your Azure Subscription (eg. VirtualMachines, Virtual Network, Storage Account, Service Fabric etc.) Resource Group: A container that holds resources Refer here Resource Provider: This is responsible for creating and manager resources. There are many resource providers in azure. Refer here Subscription: The Azure account is… Continue reading Azure Resource Manager
2000+ Placements in DevOps And Cloud
Thanks to all.
Introduction to Packer
What is Packer? Packer is a tool to create identical/similar machines for multiple platforms from a single source configuration Installing Packer Official Installation Windows Mac Linux Install unzip: ubuntu RedHat Install Packer: Download latest version from here Set Packer environment Add the following line to /etc/environment at the end of the file Activate the PATH… Continue reading Introduction to Packer
Vagrant Quick Read
Introduction Vagrant is the command line utility for managing the virtual machines. The following image shows the overview of vagrant. Vagrant Providers Vagrant uses Providers to support managing machines on various virtualization technologies. The most popular providers are Virtual Box VmWare Hyper-V So for experimenting with Vagrant we need to have one of the above… Continue reading Vagrant Quick Read
SonarQube
Installing SonarQube In this document we would install sonarqube as referred over here The default user name and password is admin. Now navigate to http://<ipaddress>:9000 Once you login with default credentials you will be asked to provide a token Language which you want todo analysis. In this documentation i had selected java & token name as… Continue reading SonarQube
Best Branching Strategy / Git Flow
What is Git Flow?? Git Flow is the successful branching suggested by Vincent Driessen This model can be acheived by using git commands any way, but to simplify git-flow toolset has been introduced which is extension to git installation Installing git-flow For installation Refer Cheat Sheet of git-flow toolset This cheatsheet seems to be very useful My take… Continue reading Best Branching Strategy / Git Flow
Installing Specific LTS Version of Jenkins on Ubuntu
Install openjdk8 Execute the following commands in order sudo apt-get update sudo apt-cache search openjdk Note: Select any suitable package from the top. This documentation selects the openjdk-8-jdk sudo apt-get install openjdk-8-jdk Prepare your system for jenkins in ubuntu Execute the following commands wget -q -O – https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add – echo deb… Continue reading Installing Specific LTS Version of Jenkins on Ubuntu
