如何在自托管 Windows 代理上从 Azure DevOps 管道运行 Azure CLI 任务?

Fal*_*lco 6 powershell azure azure-cli azure-devops azure-pipelines

情况

我的自托管 Windows 代理运行来自 Azure DevOps 的管道。为了管理 Azure 中的资源,我想使用 Azure CLI 任务。即使在前面的步骤中安装了 Azure CLI,AzureCLI 任务也会失败。

我有两个从我的管道运行的脚本。

  • (1)安装Azure CLI-->成功
  • (2) 运行 Azure CLI 命令 --> 未运行任何内部代码(甚至“Hello, World!”)而失败 不会被执行。
2021-03-05T14:50:02.5986237Z ##[error]Azure CLI 2.x is not installed on this machine.
2021-03-05T14:50:02.6391547Z ##[error]Script failed with error: Error: Unable to locate executable file: 'az'. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also verify the file has a valid extension for an executable file.
Run Code Online (Sandbox Code Playgroud)

微软

  • (1) After you install new software on an agent, you must restart the agent for the new capability to show up in the pool so that the build can run.
  • (2) After the installation is complete, you will need to reopen PowerShell to use the Azure CLI.

AzureCLI 任务无法找到已安装的 Azure CLI 可执行文件。如何修复此问题以便可以运行 AzureCLI 任务?

我已经尝试过的

  • 通过 PowerShell 设置 Azure CLI 的路径。路径已设置,但 Azure CLI 任务的 Powershell 任务失败。
  • 直接在我的安装脚本中运行 AzureCLI 命令,这可以工作,但我需要使用单独的凭据登录 Azure,同时我想使用 AzureCLI 任务中定义的服务主体。
  • 在虚拟机上重新启动 Microsoft Agent 服务,但我的代理上没有提到的服务 ( https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/v2-windows?view=azure-devops
  • 设置执行 Azure CLI 任务之前的延迟。
  • 使用 Microsoft 托管代理,该代理 100% 有效,但不符合我的公司要求,因此不是一个选择。

管道详情

trigger:
  branches:
    exclude:
    - master

pool:
  name: SelfHosted-AgentPool
  vmImage: 'windows-latest'

variables:
  environment.name: 'Test'

stages:
- stage: build_and_deploy
  jobs:
  - deployment: VMBackup_Testing  
    displayName: "Enable Backup Protection"
    environment: '$(environment.name)'
    strategy:
      runOnce:
        deploy:
          steps:
          - checkout: self    
          
         
          - task: PowerShell@2
            inputs:
              filePath: '$(System.DefaultWorkingDirectory)/Templates/Snippets/InstallAzureCLI.ps1'

          - task: AzureCLI@2
            inputs:
              workingDirectory: 'C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin'
              azureSubscription: 'XXX'
              scriptType: 'ps'
              scriptLocation: 'scriptPath'
              scriptPath: '$(System.DefaultWorkingDirectory)/Templates/Snippets/EnableBackupProtection.ps1'
Run Code Online (Sandbox Code Playgroud)

安装 Azure CLI 脚本

# Download and Install Azure CLI
Invoke-WebRequest -Uri https://azcliprod.blob.core.windows.net/msi/azure-cli-2.19.1.msi -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList "/I AzureCLI.msi /quiet"; rm .\AzureCLI.msi

# Update PATH for Powershell to use new installed software
setx /M PATH "$env:Path += ;C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin"

# Test if PATH of Azure CLI exists
Test-Path -Path "C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin"

# Reload Shell with new PATH 
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")

# Check if AZ CLI is installed
az version
Run Code Online (Sandbox Code Playgroud)

Azure CLI 命令脚本

# Check if script gets executed
Write-Host "Hello, World!"

# AZ CLI commands to enable Backup Protection
az backup protection enable-for-vm `
    --resource-group XXX`
    --vault-name XXXX`
    --vm $(az vm show -g XXX -n XXX --query id) `
    --policy-name DailyBackup
Run Code Online (Sandbox Code Playgroud)

Bri*_*SFT 2

为什么每次在同一个自承载 Windows 代理上运行管道时都需要安装 Azure CLI?

与Microsoft 托管代理不同,您只需在自托管代理计算机上手动安装所需的工具,然后就可以在代理上运行的管道中使用它们。

  1. 登录到安装了自承载代理的 Windows 计算机(本地或虚拟机)。

  2. 打开 Web 浏览器,从此处下载已发布的最新 Azure CLI 的 MSI 安装程序。

  3. 通过 MSI 安装程序安装 Azure CLI 时,通常安装向导会自动将此工具添加到系统环境变量PATH中。安装完成后,可以在机器上打开“编辑系统环境变量”进行检查。如果没有添加到系统环境变量PATH中,可以手动添加。

在此输入图像描述

  1. 完成上述步骤后,按照文档的建议,重新启动代理服务或重新启动计算机,以便已安装的 Azure CLI 工具可以在池中代理的功能中列出。

通过这种方式,当您设置管道在此自托管代理上运行时,您可以直接调用 Azure CLI,而无需在管道中安装 Azure CLI 的任何步骤。

  • 我们每个季度最多只会部署一次,因此我们不需要始终运行代理。重新安装 Azure CLI 所需的时间并不是一个障碍,而且我们更喜欢在运行部署时使用新的计算机。当前状态是 Azure CLI 安装正常,我们可以从通用 PowerShell 任务使用 Azure CLI,但是 Azure Pipelines 中的“AzureCLI@2”内置任务正在错误的文件夹中查找可执行文件 az('C: \a\1\s) 而不是程序文件。 (2认同)