Tuesday, July 30, 2019

ComosDB - MongoAPI - Document does not contain shard key This issue comes in picture when we forget to put value for Shard Key while inserting values in document. It means once we have declared Shard key for document it should be part of model which is inserting. Kindly refer an images below: ShardKey in CosmosDB collection's document : I Hope...

Tuesday, July 23, 2019

Create Linux Virtual Machine using ARM Templates (IaC) in Azure There are various ways to create virtual machine in azure , Few of them are very well known as shown below:                 1    Azure Portal 2      Azure PowerShell 3  ...

Friday, July 19, 2019

Azure DevOps – New Era – Create New Build Pipeline Ref : microsoft.com In my Previous article I shared about “how to start with AzureDevOps and how to create new organization”. https://www.dotnetpiper.com/2019/07/azure-devops-new-era.html AZURE DEVOPS – A NEW ERA Here in this we will proceed further where we left...

Thursday, July 18, 2019

Azure DevOps – A New Era

Azure DevOps – A New Era Azure DevOps : A very well know VSTS Visual Studio Team Services has become Azure DevOps with new features , icons ,Repos and Test plans along with plenty of rich feature an excerpt from Microsoft Site as shown below: The single service that was Visual Studio Team Services (VSTS) is now becoming a new set of Azure DevOps services. Throughout...

Wednesday, July 3, 2019

Push code to azure repos using vs code

Push code to azure repos using vs code While creating and pushing code to azure repo in Azure devops , for the first time I have to push code >git init >git add . >git commit -am "Add function app" >git remote add origin https://sachinkalia@dev.azure.com/sachinkalia/AzureCDN/_git/AzureCDN > git push -u origin --all Note...