Questions tagged [azure-devops]

67 questions
5
votes
1 answer

Azure Web App (Linux): “Error: Container didn't respond to HTTP pings on port: 8080” - when using: “start”: “pm2 start server.js”

My App Service Linux instance crashes if my node app is using the start script: "start": "pm2 start server.js": 2019-04-15 11:36:34.432 ERROR - Container crime-digest__6ea5_0 for site crime-digest__6ea5 has exited, failing site start 2019-04-15…
Edmond Tamas
  • 211
  • 2
  • 3
  • 7
4
votes
0 answers

Not able to run Azure Data Pipeline

I am trying to implement my first MLOps on Microsoft Azure. I am following their official document here: MlOps using Azure ML and Azure pipelines I have followed all their steps till Data pipeline. When I try to run the data-pipeline, I get the…
3
votes
1 answer

Inconsistent translation in Azure DevOps UI

I'm working with a distributed development team, managing projects through Azure DevOps. The parent company is in Germany and has all the servers based there. When I use Azure DevOps, I changed my UI locale to English-US, but I'm still getting…
3
votes
2 answers

How to keep pipeline files in a separate repository for azure devops pipeline?

Is there any way to keep the pipeline file separately in a different repo than the one in source code? So that, we can maintain all the pipelines related data in a separate repository but the pipeline should detect changes from the main…
Sara June
  • 451
  • 1
  • 9
  • 28
3
votes
1 answer

Difference Between Build and Release Agents - DevOps

Could somebody please explain the difference between build and release agents in the simplest of terms? This relates to Azure DevOps. I find info on build agents from Microsoft but I haven't found anything specifically for release agents. I'm not a…
jrd1989
  • 698
  • 15
  • 48
2
votes
1 answer

How to build maven project from another folder in azure devops pipeline?

In github actions, we can set this using - name: Build with Maven working-directory: ./VaultService run: mvn clean package --file pom.xml env: CI: false But there is no working-directory option in azure devops. Even I tried below one, but…
Sara June
  • 451
  • 1
  • 9
  • 28
2
votes
0 answers

How to checkout a branch from azure devops pipeline?

I kept trigger to cloud_singlesignon branch. But my pipeline saved to azure-pipelines and the default branch to the repo is master. But the checkout not happening from cloud_singlesignon. I observed, it is checking out from branch where the pipeline…
Sara June
  • 451
  • 1
  • 9
  • 28
2
votes
1 answer

Install not signed driver in Windows 2019 with no prompt

I want to install the not signed driver in the Azure DevOps pipeline (windows-2019 image). Driver is in the form of the .inf file. On the local machine i am using the following command: pnputil -i -a driver_name.inf but it shows a security prompt.…
2
votes
0 answers

Cannot connect self-hosted Linux VM to Azure DevOps

I am trying to set up a docker deployment process with Azure DevOps using a self-hosted Linux VM as a deployment target. It seems that I must install the AzurePipelines agent on the target Linux VM first, however it always stalls at the "Connect"…
2
votes
1 answer

Resource group location error on basic Azure pipeline release

I'm new to Azure and trying to run an out-of-the-box pipeline on Azure but it's failing on the deployment step of the pipeline. I get the error below. I am using the free trial tier of Azure. I have a resource group in West Europe and I have the…
irl_irl
  • 123
  • 1
  • 5
1
vote
1 answer

error reading configuration while deploying to aks

I am using Azure devops for regulation CI/CD in my project , i have a kubernetes cluster running through aks(azure kubernetes service) , i have used azure repo and everything and , every required file(viz. azure-pipeline file and services and…
1
vote
0 answers

ENOENT: no such file or directory, stat '/home/site/wwwroot/node_modules/.bin/npm'

I'm trying to deploy an app to azure App Service and I'm running in this issue: Got service connection details for Azure App Service:'closur-test' Package deployment using ZIP Deploy initiated. Updating submodules. Preparing deployment for commit id…
Batman
  • 111
  • 4
1
vote
1 answer

Azure DevOps Chat options

In Azure DevOps, I see the option to chat my team members by mouse-over their profile icon, but the chat link launches Skype. Is this the only chat option or can we link it to Slack or another chat engine? If so, how?
1
vote
1 answer

replace with regular expression in azure devops

I want to take this buildVariable Build.SourceVersion which will equal for example: 0gc58d92d905d62415b8866g3f48f17416da426s And replace from digit [7] till line end with empty string 0gc58d92 I tried - ShortCommitId: ${{…
1
vote
0 answers

azure pipeline job to check for file changes in a specific directory with a git commit

I am working to create a job in a stage that determines if a particular git commit has any file changes in a specific directory. If so I want to run another job. I tried below in a bash task: task: Bash@3 inputs: targetType:…
vvkr
  • 21
  • 5
1
2 3 4 5