TFS 2018 Create agent pool programatically

2019-06-09 02:30发布

Is it possible to create an Agent Pool in TFS 2018 programatically, preferably via PowerShell? I cannot find anything like that in REST API.

2条回答
Lonely孤独者°
2楼-- · 2019-06-09 03:17

I don't know why it's not well-documented, but this just worked for me against VSTS:

$token = 'myPAT'
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes((":{0}" -f $token)))

$uri = 'https://<url>/_apis/distributedtask/pools?api-version=4.1-preview.1'
$result = Invoke-RestMethod -Uri $uri -Method Post -ContentType "application/json" -Headers @{Authorization=("Basic {0}" -f $base64AuthInfo)} `
-Body (ConvertTo-Json @{name = 'foo'; autoProvision = $true})

I just looked at the REST API used in the web portal to create an agent pool and copied it; if the API version isn't the same in TFS 2018 as it is in VSTS, you can do the same thing to find the correct version to use.

查看更多
我想做一个坏孩纸
3楼-- · 2019-06-09 03:19

The REST API of TFS has an undocumented portion that deals with app pools: _apis/distributedtask/pools. For example:

Get agent pools (Request method: Get):

http://[TFS URL]/_apis/distributedtask/pools?api-version=x.x-preview.1`

api-version should match your TFS version

You could open up Chrome/IE Network inspector and found that the API calls for create agent pool action. How to do this please refer:

Finally, you just need to call REST API through PowerShell, take a look at this answer.

查看更多
登录 后发表回答