Thursday, August 1, 2019
Enhance Collaboration of Your Team Using Azure DevOps Service Hooks and MS Teams
Thursday, July 25, 2019
Setting up a Load Test Rig
Sunday, June 30, 2019
Deploy Functional App to Azure Functional App Service - Part 2
Let's get started.
- Go to portal with Azure subscription credentials.
- Select Create a resource then Azure market place pane will open
- Find and click on Function App .
Tuesday, May 28, 2019
Deploying Azure Function App with Azure DevOps - part 1
Azure function is a small piece of code in cloud which you can write as a solution for the problem without worrying about an application or infrastructure to run it. Azure Functions let you develop server less application with several development languages.This post will discuss how to create an Azure function project with visual studio and package the function application using Azure DevOps build.
Saturday, May 11, 2019
Deploy Container to Web App–Part 2
This post explains how to deploy a container image to azure app service web app using Azure DevOps.In the previous post Deploy Container to Web App - Part 1, we have learned how to build and push container image to the Azure container registry(ACR) using Azure DevOps build.Let’s learn how to deploy the ACR image to Azure app service web app using Azure DevOps deployment pipeline.
Find the steps as follows.
Tuesday, April 30, 2019
Deploy Container to Web App–Part 01
Let’s look at the steps.
1. As the first step let’s create an Azure container registry.The container registry is the place where container images are saved.Azure provide facility to create our own private registries.Hence let’s create an ACR called DemoWebApp to save our container images.You can learn how to create an ACR from my previous post Create Azure Container Registry – Part1.
2. Create Azure DevOps project with a Git repo. Find guide here.
3. Now prepare the development environment to create a container image of the simple .NET core application.
Saturday, March 30, 2019
Install Azure DevOps Server 2019 RC2
Saturday, February 9, 2019
Create Azure Kubernetes Cluster Using Azure CLI
This post explains how to deploy a kubernetes cluster using Azure CLI (Command Line Interface). Let's look at the steps.
- Install the Azure CLI. Find the installation details from this location.(https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest)
- After installation completed, open windows PowerShell.
- Type az login command to login to your Azure subscription.
- A browser window will prompt for you to login. Enter your Azure subscription credentials and login.
- After login succeed, list of all the subscriptions which you have access will be displayed in the PowerShell window.
-
Azure DevOps YAML pipelines now support the stringList parameter type, which allows you to present multiple selectable options as checkboxe...
-
As DevOps engineers, you get requirements to do scripts to perform several actions on application or get status of the application backend ...
-
This blog explains how to use GitHub Copilot Chat to perform various Azure Kubernetes Service (AKS) tasks, such as creating an AKS cluster a...