Questions tagged [azure-devops-self-hosted-agent]

291 questions
0
votes
2 answers

Azure pipelines - running a self-hosted agent behind firewall

I am trying to set up a self-hosted agent behind a firewall. I tried to get the IPs or URLs to be whitelisted so the agent will be able to communicate with Azure DevOps services. I tried this microsoft docs which has information on the URLs and IPs…
0
votes
2 answers

How to change Azure DevOps environment agent folder structure

To achieve continuous deployment, we used a (classic) release pipeline on Azure DevOps to deploy a webservice to a VM in our intranet. To benefit of a yaml deployment pipeline, I replaced our former deployment pool agent on that VM with an…
0
votes
3 answers

How to run more than one pipeline parallelly in Azure DevOps for self hosted agent

I am having one windows self hosted agent for Azure DevOps pipeline. If we run two pipelines, one has to wait for the other to be completed. Is there any way to do parallelly run the pipelines by doing any configuration in agent?
VKD
  • 633
  • 2
  • 12
  • 28
0
votes
1 answer

Installing Self Hosted Linux Agent for Azure devops Server

Hello Cloud Engineers, I am trying to create a self hosted agent in azure to run by build and release pipeline. When i am configuring the linux VM as a agent, i am getting below error. --------OS…
0
votes
2 answers

docker is unable to pull the base image | Get https://registry-1.docker.io/v2/:

I am trying to build a docker image using my build pipeline, however docker is unable to pull the base image my build pipeline is hosted in azure devops server Azure devops server hosted inside window server 2019 VM 2021-03-04T06:58:21.6816037Z…
0
votes
1 answer

What permissions are needed for the Azure DevOps Deployment Group Agent?

I am trying to install the Azure DevOps Deployment Group Agent as described in Provision agents for deployment groups. Step 6 includes the following guidance: When prompted for the user account, press Return to accept the defaults. However, the…
Mike
  • 7,500
  • 8
  • 44
  • 62
0
votes
1 answer

Azure Self-hosted Windows agent hook

In Azure DevOps we have a Pipeline and Release created and working. In the release, we have the Azure Self-hosted Windows agent running and publishing to the off-site server without any issues. Once the agent has completed deployment of the website,…
Ravi Ram
  • 24,078
  • 21
  • 82
  • 113
0
votes
2 answers

Unable to locate executable file: 'bash'

I am trying to run a bash script in my azure release pipeline. For this, I have used a task from the Visual Studio marketplace: https://marketplace.visualstudio.com/items?itemName=tsuyoshiushio.shell-exec which will perform a sed operation to…
Satyam Pandey
  • 593
  • 2
  • 10
  • 32
0
votes
1 answer

Azure - Run test project on agent from command line

I am working on Azure pipelines, running on a Windows self-hosted agent, behind a firewall to run automated tests. I wrote questions on related issues last December in Dotnet test questions on errors and What .Net Core version to use on agent linked…
0
votes
2 answers

Getting a "NetLogon" error when registring trying to regster a new agent under "NT Authority\System"

I'm trying to set up a new deployment group, with the creation of a new dedicated (windows) agent. The web UI is nice, as it is able to generate the power shell commands to get that done. But unlike the documentation, I don't get the little check…
0
votes
1 answer

WindowsMachineFileCopy doesn't copy *EXTRA Files

I am attempting to setup new releases in our new Azure DevOps (AzDo) environment. We have on prem agents setup with rights to access the destination servers with 1 agent per environment. (Dev -> Test -> Prod) We noticed that the release was…
0
votes
1 answer

Azure mac hosted Agent : installing gem install , downloading old version gems

im running Hosted mac agent and i noticed that when i run this command in the pipeline : - job: mac_agent dependsOn: self_hosted_connect timeoutInMinutes: 30 pool: vmImage: 'macOS-latest' workspace: clean: all steps: -…
0
votes
1 answer

How to fulfil Visual Studio demand for self-hosted docker build agent?

I've successfully setup and run a self hosted docker build agent using the instructions here: https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/docker?view=azure-devops however VS builds won't run on that agent because it doesn't…
Greg B
  • 14,597
  • 18
  • 87
  • 141
0
votes
0 answers

self-hosted agent is not working for docker container

Problem: We are trying to run self-hosted agent on my Windows 10 (Enterprise) machine using docker-container approach as explained in article. We can create docker image successfully (for Windows) as explained in mentioned article but while…
Arvind Bhatt
  • 157
  • 2
  • 3
  • 13
0
votes
1 answer

Error on azure release pipeline:No agent found in pool 'some pool' which satisfies the specified demands: Agent.Version -gtVersion 2.155.1

I am deploying from azure devops using a self hosted deploy agent, using azure release pipelines. The deployment pool is shared and served by one deploy agent running on a windows 2019. All works well for the old project. I created a new project…