PackerBuild@0 - 生成计算机映像 v0 任务
使用此任务使用 Packer 生成计算机映像,该映像可用于 Azure 虚拟机规模集部署。
此版本的任务已弃用;使用 PackerBuild@1 利用 工作负荷标识联合等最新功能。
语法
# Build machine image v0
# Build a machine image using Packer, which may be used for Azure Virtual machine scale set deployment.
- task: PackerBuild@0
inputs:
templateType: 'builtin' # 'builtin' | 'custom'. Required. Packer template. Default: builtin.
#customTemplateLocation: # string. Required when templateType = custom. Packer template location.
#customTemplateParameters: '{}' # string. Optional. Use when templateType = custom. Template parameters. Default: {}.
# Azure Details
ConnectedServiceName: # string. Required when templateType = builtin. Azure subscription.
location: # string. Required when templateType = builtin. Storage location.
storageAccountName: # string. Required when templateType = builtin. Storage account.
azureResourceGroup: # string. Required when templateType = builtin. Resource group.
# Deployment Inputs
baseImageSource: 'default' # 'default' | 'customVhd'. Required when templateType = builtin. Base image source. Default: default.
#baseImage: 'MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows' # 'MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows' | 'MicrosoftWindowsServer:WindowsServer:2016-Datacenter:windows' | 'MicrosoftWindowsServer:WindowsServer:2012-Datacenter:windows' | 'MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:windows' | 'Canonical:UbuntuServer:14.04.4-LTS:linux' | 'Canonical:UbuntuServer:16.04-LTS:linux' | 'RedHat:RHEL:7.2:linux' | 'RedHat:RHEL:6.8:linux' | 'OpenLogic:CentOS:7.2:linux' | 'OpenLogic:CentOS:6.8:linux' | 'credativ:Debian:8:linux' | 'credativ:Debian:7:linux' | 'SUSE:openSUSE-Leap:42.2:linux' | 'SUSE:SLES:12-SP2:linux' | 'SUSE:SLES:11-SP4:linux'. Required when baseImageSource = default && templateType = builtin. Base image. Default: MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows.
#customImageUrl: # string. Required when baseImageSource = customVhd && templateType = builtin. Base image URL.
#customImageOSType: 'windows' # 'windows' | 'linux'. Required when baseImageSource = customVhd && templateType = builtin. Base image OS. Default: windows.
packagePath: # string. Required when templateType = builtin. Deployment Package.
deployScriptPath: # string. Required when templateType = builtin. Deployment script.
#deployScriptArguments: # string. Optional. Use when templateType = builtin. Deployment script arguments.
# Advanced
#additionalBuilderParameters: '{}' # string. Optional. Use when templateType = builtin. Additional Builder parameters. Default: {}.
#skipTempFileCleanupDuringVMDeprovision: true # boolean. Optional. Use when templateType = builtin. Skip temporary file cleanup during deprovision. Default: true.
# Output
#imageUri: # string. Image URL.
输入
templateType
-
Packer 模板
string
。 必填。 允许的值:builtin
(自动生成)、custom
(用户提供)。 默认值:builtin
。
指定是希望任务自动生成 Packer 模板,还是使用你提供的自定义模板。
customTemplateLocation
-
Packer 模板位置
string
。
templateType = custom
时是必需的。
指定自定义用户提供的模板的路径。
customTemplateParameters
-
模板参数
string
。 可选。 当 templateType = custom
时使用。 默认值:{}
。
指定将传递给 Packer 以生成自定义模板的参数。 这应映射到自定义模板中的 variables
部分。 例如,如果模板具有名为 drop-location
的变量,则在此处添加一个名称 drop-location
和要使用的值的参数。 也可以将该值链接到发布变量。 若要查看/编辑网格中的其他参数,请单击文本框旁边的 …
。
ConnectedServiceName
-
Azure 订阅
string
。
templateType = builtin
时是必需的。
指定用于烘焙和存储计算机映像的 Azure 资源管理器订阅。
location
-
存储位置
string
。
templateType = builtin
时是必需的。
指定用于存储生成的计算机映像的位置。 此位置还用于创建临时 VM,以便生成映像。
storageAccountName
-
存储帐户
string
。
templateType = builtin
时是必需的。
指定用于存储生成的计算机映像的存储帐户。 此存储帐户必须预先存在于所选位置。
azureResourceGroup
-
资源组
string
。
templateType = builtin
时是必需的。
指定包含所选存储帐户的 Azure 资源组。
baseImageSource
-
基础映像源
string
。
templateType = builtin
时是必需的。 允许的值:default
(库)、customVhd
(自定义)。 默认值:default
。
指定基础映像的源。 可以从精选的 OS 映像库中进行选择,也可以提供自定义映像的 URL。
baseImage
-
基础映像
string
。
baseImageSource = default && templateType = builtin
时是必需的。 允许的值:MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows
(Windows 2012-R2-Datacenter)、MicrosoftWindowsServer:WindowsServer:2016-Datacenter:windows
(Windows 2016-Datacenter)、MicrosoftWindowsServer:WindowsServer:2012-Datacenter:windows
(Windows 2012-Datacenter)、MicrosoftWindowsServer:WindowsServer:2008-R2-SP1:windows
(Windows 2)008-R2-SP1)、Canonical:UbuntuServer:14.04.4-LTS:linux
(Ubuntu 14.04.4-LTS)、Canonical:UbuntuServer:16.04-LTS:linux
(Ubuntu 16.04-LTS),RedHat:RHEL:7.2:linux
(RHEL) 7.2)、RedHat:RHEL:6.8:linux
(RHEL 6.8)、OpenLogic:CentOS:7.2:linux
(CentOS 7.2)、OpenLogic:CentOS:6.8:linux
(CentOS 6.8)、credativ:Debian:8:linux
(Debian 8)、credativ:Debian:7:linux
(Debian 7)、SUSE:openSUSE-Leap:42.2:linux
(openSUSE-Leap 42.2)、SUSE:SLES:12-SP2:linux
(SLES 12-SP2)、SUSE:SLES:11-SP4:linux
(SLES 11-SP4)。 默认值:MicrosoftWindowsServer:WindowsServer:2012-R2-Datacenter:windows
。
从精选的 OS 映像列表中选择。 这用于在捕获计算机映像之前安装先决条件(s)和应用程序(s)。
customImageUrl
-
基础映像 URL
string
。
baseImageSource = customVhd && templateType = builtin
时是必需的。
指定基本映像的 URL。 这用于在捕获计算机映像之前安装先决条件(s)和应用程序(s)。
customImageOSType
-
基础映像 OS
string
。
baseImageSource = customVhd && templateType = builtin
时是必需的。 允许的值:windows
、linux
。 默认值:windows
。
packagePath
-
部署包
string
。
templateType = builtin
时是必需的。
指定相对于 $(System.DefaultWorkingDirectory)
的部署包目录的路径。 支持微型模式。 示例路径:FrontendWebApp/**/GalleryApp
。
deployScriptPath
-
部署脚本
string
。
templateType = builtin
时是必需的。
指定 powershell 脚本(适用于 Windows)或部署包的 shell 脚本(适用于 Linux)的相对路径。 此脚本应包含在上面选择的包路径中。 支持微型模式。 示例路径:deploy/**/scripts/windows/deploy.ps1
。
deployScriptArguments
-
部署脚本参数
string
。 可选。 当 templateType = builtin
时使用。
指定要传递给部署脚本的参数。
additionalBuilderParameters
-
其他生成器参数
string
。 可选。 当 templateType = builtin
时使用。 默认值:{}
。
在自动生成的 Packer 模板模式下,任务使用 Azure 生成器创建 Packer 模板。 此生成器用于生成计算机映像。 可以将密钥添加到 Azure 生成器以自定义生成的 Packer 模板。 例如,如果使用的是 CentOS 基础映像,则设置 ssh_tty=true
,并且需要具有运行 sudo 的 tty。
若要查看或编辑网格中的其他参数,请单击文本框旁边的 …
。
skipTempFileCleanupDuringVMDeprovision
-
取消预配 期间跳过临时文件清理
boolean
。 可选。 当 templateType = builtin
时使用。 默认值:true
。
在取消预配 VM 期间,跳过上传到 VM 的临时文件的清理。 有关详细信息,请参阅 Azure 虚拟机映像生成器。
imageUri
-
图像 URL
string
。
指定存储生成的计算机映像 URL 的输出变量的名称。
任务控制选项
除任务输入之外,所有任务都具有控制选项。 有关详细信息,请参阅 控件选项和常见任务属性。
输出变量
没有。
注解
使用此任务使用 Packer 生成计算机映像。 此映像可用于 Azure 虚拟机规模集部署。
注释
若要启用详细日志,请导航到 管道>编辑>变量,然后添加新变量 PACKER_LOG 并将其值设置为 1。