Merge pull request #4594 from boumenot/pr-azure-examples
azure: Use a more long term image sku
This commit is contained in:
commit
9c0526c078
|
@ -1,35 +1,35 @@
|
||||||
{
|
{
|
||||||
"variables": {
|
"variables": {
|
||||||
"resource_group": "{{env `ARM_RESOURCE_GROUP`}}",
|
"resource_group": "{{env `ARM_RESOURCE_GROUP`}}",
|
||||||
"storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}",
|
"storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}",
|
||||||
"subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}"
|
"subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}"
|
||||||
},
|
},
|
||||||
"builders": [{
|
"builders": [{
|
||||||
"type": "azure-arm",
|
"type": "azure-arm",
|
||||||
|
|
||||||
"resource_group_name": "{{user `resource_group`}}",
|
"resource_group_name": "{{user `resource_group`}}",
|
||||||
"storage_account": "{{user `storage_account`}}",
|
"storage_account": "{{user `storage_account`}}",
|
||||||
"subscription_id": "{{user `subscription_id`}}",
|
"subscription_id": "{{user `subscription_id`}}",
|
||||||
|
|
||||||
"capture_container_name": "images",
|
"capture_container_name": "images",
|
||||||
"capture_name_prefix": "packer",
|
"capture_name_prefix": "packer",
|
||||||
|
|
||||||
"os_type": "Linux",
|
"os_type": "Linux",
|
||||||
"image_publisher": "Canonical",
|
"image_publisher": "Canonical",
|
||||||
"image_offer": "UbuntuServer",
|
"image_offer": "UbuntuServer",
|
||||||
"image_sku": "16.04.0-LTS",
|
"image_sku": "16.04-LTS",
|
||||||
|
|
||||||
"location": "West US",
|
"location": "West US",
|
||||||
"vm_size": "Standard_A2"
|
"vm_size": "Standard_DS1_v2"
|
||||||
}],
|
}],
|
||||||
"provisioners": [{
|
"provisioners": [{
|
||||||
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'",
|
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'",
|
||||||
"inline": [
|
"inline": [
|
||||||
"apt-get update",
|
"apt-get update",
|
||||||
"apt-get upgrade -y",
|
"apt-get upgrade -y",
|
||||||
"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
|
"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
|
||||||
],
|
],
|
||||||
"inline_shebang": "/bin/sh -x",
|
"inline_shebang": "/bin/sh -x",
|
||||||
"type": "shell"
|
"type": "shell"
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue