Questions tagged [azure-devops]
65 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
- 1
- 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…
Dhaval Simaria
- 141
- 3
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
- 389
- 4
- 15
2
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…
VirtualValentin
- 121
- 3
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
- 389
- 4
- 15
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.…
kamilslaw
- 21
- 2
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"…
Ingo Schalk-Schupp
- 121
- 2
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
- 5
2
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
- 628
- 10
- 35
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?
Christopher Schlumpf
- 11
- 1
1
vote
1 answer
How to manage pipelines in multiple branches, in azure devops?
Let's say I have branch fetaure1, where there is pipeline file.
The trigger will be like this.
trigger:
- feature1
For development purpose, I created a new branch from it say (feature1_deveoper1)
But, even though this new branch has this…
Sara June
- 389
- 4
- 15
1
vote
0 answers
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
- 389
- 4
- 15
1
vote
0 answers
How to install custom version of maven in azure devops pipleine?
I have installed adopt openjdk 16 using the task below.
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
wget…
Sara June
- 389
- 4
- 15
1
vote
1 answer
How to tag docker image with git commit code short id, in azure devops?
I saw few links where I can tag my docker image using ${Build.SourceVersion} in azure devops pipeline.
But it is using the complete ID of the commit.
But I want to use only the short ID.
I mean this (2cc7968) instead of this…
Sara June
- 389
- 4
- 15