AI-Driven Cloud & DevOps

  • My First Docker Container

    This post will walk you through, how I have built my first Docker container.

    Prepare the environment

    If you already have Windows 10 or Windows server 2016 machine. Download code to configure Docker environment.

    If you would like to have a new VM Get the code from here. This will create Windows server 2016 VM with Docker, VS Code, git and chrome.

    Read More »

  • Docker Definitions and Taxonomy

    Docker Definitions and Taxonomy

    In this post I am going to talk about Docker Definitions and Taxonomy.
    Some of the term, I will co-relate with VM, but please not that VM and Containers are not same. They have significant differences. I hope this will help you to easily understand, especially if you are new to Docker.

    Read More »

  • Docker Overview

    Docker

    What is Docker? The standard answer, I always got from audience is Docker is a Container. If you think the same then you are in trap.

    Docker is not a container. Docker provide tools and techniques to build the container.

    Docker is an open-source project for automating the deployment of applications as portable, self-sufficient containers that can run on any cloud or on-premises. Docker is also a company promoting and evolving this technology with a tight collaboration with cloud, Linux and Windows vendors, like Microsoft.

    Read More »

  • NewIT

    IT is changing. What’s new in that IT have always been changing.

    If you look back, earlier IT is considered as cost center, client/ customer need IT service to run/support their business like using ERP, HR, Finance systems. Client always wants to keep IT spending cost as minimum as possible because it has impact on product cost.

    So, what change now?

    Read More »

  • Container - It’s all about Application

    It’s all about Application

    This is the simplest definition I use to explain container. No matter whether we have simple medium or high complex environments at the end we need all this to run the applications.

    If we talk about the deployment models, we can categorize application deployment on

    Physical server’s environment

    Virtual server’s environment (H/W virtualization)

    and now we have more optimized Virtualized environment (nested virtualization or O/S virtualization)

    Read More »

  • DevOps Project in Azure (Public Preview)

    DevOps Project - Another exciting feature is now available in public preview.

    Build any Azure application, on any Azure service, in less than five minutes.

    I see this as an extension of Azure Web App with additional features. Its useful quick starting point, when your team do not have much experience in DevOps practices.

    Read More »

  • IaC - ARM Template Deployment (HOL)

    ARM Template hands-on lab.

    1. Option to create ‘n’ number of VMs associated with dedicated storage accounts along and public IPs. All these VMs share one common storage account for diagnostics.
    2. All the VMs will have an additional data disk.
    3. Virtual network with one subnet.
    4. Create Azure SQL server instance along with database.
    5. All of these resources will reside inside a single resource group.
    6. Use VSTS CI/CD pipeline for deployment.

    Read More »

  • New Azure Free Account

    ## New Azure Free Account

    Earlier when we sign up for Azure free account, we use to get 30 days free account with $200 credit. So, if you consume all $200 or 30 days, either you need to upgrade your account or it got disabled. Microsoft recently launch New Azure Free Account. The Azure free account includes $200 credit to spend for 30 days and free Azure products for 12 months. In addition to this it also give 25+ always free services

    Read More »

  • IaC - Understand Deploy-AzureResourceGroup.ps1

    In this post I am going to walk you through the Deploy-AzureResourceGroup.ps1. This PS script is use to perform validation, create artifact storage, container and SAS token (if required) and finally execute template deployment.

    [Microsoft.Azure.Common.Authentication.AzureSession]::ClientFactory.AddUserAgent(“VSAzureTools-$UI$($host.name)”.replace(‘ ‘,’_’), ‘3.0.0’)

    Read More »

  • Setting up Docker on Windows environment

    An integrated, easy-to-deploy development environment for building, debugging and testing Docker apps on a Windows PC. Docker for Windows is a native Windows app deeply integrated with Hyper-V virtualization, networking and file system, making it the fastest and most reliable Docker environment for Windows.

    Win 10 OS: Base machine must have Windows 10 Anniversary Edition or Creators Update (Professional or Enterprise).

    Read More »