Questions tagged [azure-deployment]

The process of making the raw code (Visual Studio Solution) to Azure Cloud runnable instance.

579 questions
3
votes
1 answer

Automating a FluentMigrator Rollback on Azure Devops

Currently have a release pipeline that runs my migration project in the up direction - e.g. The web app project is deployed to the environment In the Solution we have a fluent migrator project As part of the release pipeline, we run the up…
Percy
  • 2,855
  • 2
  • 33
  • 56
3
votes
1 answer

Azure resource group deployment in azure devops failed with error ["Message": "Deployment with id '#######' exists"]

I am creating a rlease definition in azure devops incluging deployment of arm template using Azure resource group deployment step. i am getting an error that says 019-10-23T01:59:02.1607991Z There were errors in your deployment. Error code:…
3
votes
3 answers

Why is Development configuration being loaded for Azure Function when it should be Production configuration?

I've deployed an Azure Function to Azure. I have not specified AZURE_FUNCTIONS_ENVIRONMENT to be "Development" anywhere in the Application Settings, or anywhere else in the environment. However, when the following code executes var…
DaveDev
  • 41,155
  • 72
  • 223
  • 385
3
votes
2 answers

Provision Access Policy with DependsOn

I'm trying to do the following: Create a keyvault (works) Create an AZ function (works) Use the keyvault's vaultURI as an App Setting to the AZ function (works) Give the AZ function managed identity (works) Create an Access Policy whereby the AZ…
MarkB
  • 1,783
  • 2
  • 17
  • 32
3
votes
1 answer

Azure ARM Template deployment of DataFactory with Azure DevOps Git configuration

I am attempting to deploy an Azure DataFactory resource and configure it to use Azure DevOps Git for source control. The Azure Devops organization, repository and collaboration branch all exist. When I deploy the template, the DataFactory resource…
3
votes
1 answer

Deploying to App Service Environment from Azure DevOps

We have 1 internal ASE in a subnet. In a different subnet in the same network, we have deployed a Virtual Machine that acts as Azure DevOps Agent Windows v2 We are able to deploy Web Apps manually (using Visual Studio) from a machine that access to…
3
votes
1 answer

Azure. Release not getting triggered and stucks when triggered manually

I'm using Azure DevOps to build and release my web app. I'm facing the following issue now: after the code push the build started and completed successfully, but then the release didn't get triggered. And when I started it manually it got stuck…
3
votes
1 answer

Azure devops .netcore fails but builds fine in visual studio

--Fixed it... Geez this stuff is Janky. Microsoft link to explain what to do https://learn.microsoft.com/en-us/aspnet/core/migration/21-to-22?view=aspnetcore-2.2&tabs=visual-studio I had to remove the version tag from the Microsoft.AspNetCore.All…
Steve Coleman
  • 1,987
  • 2
  • 17
  • 28
3
votes
0 answers

Exception Message: Page not found. (type VssServiceResponseException) in Azure DevOps Release Pipeline

I configured the gated build, CI and CD for my current project in few weeks back, whenever I committed new changes from my development IDE like VS2017. Then I created the pull request for newly changes after few minutes the pull request and CI build…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
3
votes
2 answers

Deploying Angular app in Azure and configuring CI/CD using VSTS

I'm learning to deploy an Angular app in Azure and configuring CI/CD using VSTS. So, I created AngularHeroes app based on this tutorial. Created a new resource (Web App service) in Azure. In VSTS, created a new project, added a VSTS repository and…
Gaurav
  • 437
  • 1
  • 6
  • 15
3
votes
0 answers

Azure Deployment Center Setup Broken

I have previously set up Azure Deployment with GitHub, but yesterday the builds stopped syncing and the interface seemed to hang. I have removed the existing deployment configuration, to started again. The setup journey (which I believe seems to…
3
votes
1 answer

Error 'EMFILE: too many open files, open' VSTS in Release

I am trying to deploy the Angular 5 sample Heros App to Azure using Azure's Continous Delivery, it is failing on the release with the following error: 2018-01-14T13:22:41.8301597Z ##[section]Starting: Deploy Azure App…
3
votes
1 answer

Allowing another developer to deploy azure functions on my Azure subscription without my password?

I'm looking to build some Azure functions in the Azure Functions App Platform as a service. I have a developer who will help me. Can I share the apps publishing profile with him without exposing my password or admin rights to my subscription? Can…
Hell.Bent
  • 1,667
  • 9
  • 38
  • 73
3
votes
1 answer

In Azure, how do I deploy functionapp code without using git?

I created a Resource Manager template which has the Resources to run a function app basically using the default template for this purpose and I can manually copy files to my File Storage under sites\wwwroot and when I curl the functionapp it…
justin.m.chase
  • 13,061
  • 8
  • 52
  • 100
3
votes
3 answers

Azure Web Job Run Once

I want to use an Azure Web Job run once, when I deploy (continuous deployment from Github). In my console application I simply print a line and exit. I chose continuous for schedule: namespace MyApp.Deployment { class Program { …