我对Packer和Azure堆栈有问题,我试图在Azure堆栈中构建一个映像,但看起来Packer没有尝试使用我的自定义url。
{
"builders": [{
"type": "azure-arm",
"client_id": "client_id",
"client_secret": "client_secret",
"tenant_id": "tenant_id",
"subscription_id": "subscription_id",
"managed_image_resource_group_name": "resource_group_name",
"managed_image_name": "random_name",
"os_type": "Linux",
"image_publisher": "Canonical",
"image_offer": "UbuntuServer",
"image_sku": "18.04-LTS",
"azure_tags": {
"dept": "Engineering",
"task": "Image deployment"
},
"location": "custom_location",
"vm_size": "Standard_DS2_v2"
}],
"provisioners": [{
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'",
"inline": [
"apt-get update",
"apt-get upgrade -y",
"apt-get -y install nginx",
"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
],
"inline_shebang": "/bin/sh -x",
"type": "shell"
}]
}
错误
azure-arm: output will be in this color.
==> azure-arm: Running builder ...
==> azure-arm: Getting tokens using client secret
==> azure-arm: Getting tokens using client secret
azure-arm: Creating Azure Resource Manager (ARM) client ...
Build 'azure-arm' errored: Cannot locate the managed image resource group resource_group_name.
==> Some builds didn't complete successfully and had errors:
--> azure-arm: Cannot locate the managed image resource group olaf.
==> Builds finished but no artifacts were created.
但信用是正确的,我可以使用ServiceAccount/App凭据登录并列出所有资源组。似乎一切都正常。
有人知道如何让Packer使用azure stack吗?有没有一种方法可以给堆栈域,而不是原来的azure域或类似的东西?
谢谢
我知道这个问题很老,你可能已经解决了,但我今天遇到了同样的问题,我认为为其他遇到这个问题的人添加我的解决方案可能会有所帮助:
请确保将您的服务主体添加为资源组的参与者。
-
在Azure门户中,导航到目标资源组
-
单击";接入(IAM(";在左手边。
-
单击";添加";在顶部搜索服务主体