Christo S. Christov
Christo S. Christov

Reputation: 2309

Private agent deployment on Azure

Currently I'm using a private agent to build the artifacts for an application. Deployment fails with this error

Your account has no Build or Release minutes remaining. Retry your Job after 09/01/2017 or visit https://go.microsoft.com/fwlink/?LinkID=320621&clcid=0x409 for more information.
Work items

How can I deploy it with my private agent or what is the way to do this?

Upvotes: 1

Views: 204

Answers (2)

Andy Li-MSFT
Andy Li-MSFT

Reputation: 30432

Deployment also using the agent.

According to the error message "Your account has no Build or Release minutes remaining", seems you are using the hosted agent to deploy. So, please check the build/release definition, if you select the Private agent for the deployment.

According to this article(1 free Private Pipeline area): Private agents are now free and unlimited So, it will not charge the build/release minutes. But you need to pay for the Agent compute hours in Azure in case you are not the subscriber.

If that sill not work, you can try to setup the build agent on your own machine as bmoore mentioned above.

You can reference below articles, they should be helpful for you:

Upvotes: 2

bmoore-msft
bmoore-msft

Reputation: 8737

You need to setup a custom build agent and then when you queue the build, select that agent to run the build (or default to your custom build agent). See: https://www.visualstudio.com/en-us/docs/build/actions/agents/v2-windows

Upvotes: 1

Related Questions