This post discusses the issue that testers face while using the load test rig created with Visual Studio for the first time.After configuring the test controller and test agent for the test rig, you might need to track the status of the controller and agents. For that purpose, you can use Manage Test Controller section of the visual studio.
Prerequisites:
Load test rig configured using several machines
Friday, December 27, 2019
Enabling the Disabled Manage Test Controller window in Visual Studio When Using After Configuring a New Test Rig
Saturday, December 21, 2019
Resolving reading mal-formatted XML with PowerShell
Our requirement was to get the content of the App.config file and App.dll.config file to a PowerShell variable. It was possible to get the content of the App.config file to a PowerShell variable with following command.$appConfig is the App.config file path.
Sunday, December 15, 2019
Updating App config in Azure Pipeline Using Octopus Variable set
Prerequisites:
- Octopus environments
- Octopus variable sets
- Octopus project with variable sets attached
Let's identify how we configure a project and variable sets in the Octopus. Following image shows the Octopus variable and values defined with the scope.
Saturday, November 30, 2019
Reusing Steps in Azure DevOps Build Pipelines with YAML Templates
Following is the yaml script which doesn't use templates. It has all the steps in the same yaml file which makes a script not manageable.
Saturday, November 16, 2019
Resolving "user lacks permissions" in NuGet push task of Azure Pipelines
pre requisites: Azure DevOps arifacts feed
Let’s get started.
- You can implement the build pipeline to pack and push the nuget package to the the Azure DevOps nuget feed as explained in this post.Using NuGet Packages as Azure DevOps Artifacts Once you configured the build pipeline, it will look as follows.
Friday, November 8, 2019
Setting up Multiple YAML Builds in the Same Azure Git Repo With Path Filters
Pre-requisites : Azure DevOps project with multiple solutions in the same repo
Let's get started.
Tuesday, October 29, 2019
Automated Cross Browser Testing with LambdaTest and Azure DevOps
Pre-requisites: Selenium script which use LambdaTest selenium grid
Azure DevOps project
Monday, October 14, 2019
Attach UI/Functional Test Run Video to Tests in Azure DevOps
Sunday, October 6, 2019
Getting started with Web Performance Test Scenarios
Web Performance and Load Test is important part of the test cycle which help to verify the performance of the web application under load. Visual studio is one of the well known tool for Load and Performance test.Hence let's try to learn how to work with web performance test with Visual Studio in this post.
- Create New Project. Go to File-->New—>Project
- Popup window will open. Select Web Performance and Load Test Project from test projects section.
Sunday, September 8, 2019
Resolving Windows Machine File Copy Task Failed With Access Denied Issue
Thursday, August 22, 2019
Using NuGet Packages as Azure DevOps Artifacts
Sunday, August 11, 2019
Deploy Jenkins Build Artifacts using Azure DevOps Deployment Pipeline
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.
Saturday, January 12, 2019
Create Azure Container Registry–Part 2
In the previous post ( Create Azure Container Registry Part1) we have discussed how to create an Azure container registry through the Azure portal.This post explains how to create an Azure container registry using Azure CLI(Command Line Interface). Azure CLI is a tool that provide great support to manage Azure resources. Let’s look at the steps.
Wednesday, January 2, 2019
Create Azure Container Registry–Part1
-
As DevOps engineers, you get requirements to do scripts to perform several actions on application or get status of the application backend ...
-
If you are familiar with Terraform, you might have experience with terraform state import, which allows to import state of the already prov...
-
This post will discuss the issue you might get when trying to push the nuget package to the Azure DevOps Artifact feed using the build pipel...