我在VSTS中使用用戶提供的Packer模板構建自定義Azure ami以部署到VMSS(類似於此處指示的link)用戶提供的Packer模板在VSTS中構建不可變映像
在我的打包模板的供應商部分,有一個名爲Deploy的文件夾(與模板位於同一目錄中)需要上傳,其中包含由打包程序供應商運行以創建自定義映像的所有腳本和證書。
"provisioners": [
{
"type": "windows-shell",
"inline": [
"cmd /c \"mkdir c:\\\\PackerTemp\""
]
},
{
"type": "file",
"source": "./Deploy",
"destination": "c:\\PackerTemp"
},
{
"type": "powershell",
"inline": [
"Start-Process powershell -ArgumentList \"C:\\\\PackerTemp\\\\Deploy\\\\InstallIIS.ps1\" -NoNewWindow -Wait"
]
},
{
"type": "powershell",
"inline": [
"Start-Process powershell -ArgumentList \"C:\\\\PackerTemp\\\\Deploy\\\\InstallCertificate.ps1\" -NoNewWindow -Wait"
]
}
上面的工作很好,當地方建設。但是,使用VSTS進行構建時,VSTS僅將模板文件複製到臨時位置,並從臨時位置執行,而不實際複製整個目錄。
2017-06-26T04:16:15.4579904Z Original template location:
d:\a\r1\a\PackerExperiment\drop\PackerTemplate\firstPackerTry.json
2017-06-26T04:16:15.4579904Z Copying original template from
d:\a\r1\a\PackerExperiment\drop\PackerTemplate\firstPackerTry.json to
temporary location d:\a\_temp\1498450573956
2017-06-26T04:16:15.4599904Z Copied template file to a temporary location:
d:\a\_temp\1498450573956
因此,形象建設任務失敗,出現錯誤
* Bad source './Deploy': GetFileAttributesEx ./Deploy: The system cannot find the file specified.
我找不到太多的信息。有沒有解決這個問題的方法?我是VSTS和派克的新手
任何幫助/建議將不勝感激。
您是否參考此博客:https://blogs.msdn.microsoft.com/manibindra/2016/12/26/how-to-continuously-deploy-web-application-to-azure-vm-scale- sets-using-vsts-and-packer/ –