From fd69efbb85c8f8643a60bac14ef2b4d50057933e Mon Sep 17 00:00:00 2001 From: Christopher Boumenot Date: Tue, 30 May 2017 11:30:51 -0700 Subject: [PATCH] Add custom image examples --- .../azure/linux_custom_managed_image.json | 47 ++++++++++++++++++ examples/azure/ubuntu_managed_image.json | 48 +++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 examples/azure/linux_custom_managed_image.json create mode 100644 examples/azure/ubuntu_managed_image.json diff --git a/examples/azure/linux_custom_managed_image.json b/examples/azure/linux_custom_managed_image.json new file mode 100644 index 000000000..62269b0ee --- /dev/null +++ b/examples/azure/linux_custom_managed_image.json @@ -0,0 +1,47 @@ +{ + "variables": { + "client_id": "{{env `ARM_CLIENT_ID`}}", + "client_secret": "{{env `ARM_CLIENT_SECRET`}}", + "resource_group": "{{env `ARM_RESOURCE_GROUP`}}", + "storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}", + "subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}" + }, + "builders": [ + { + "type": "azure-arm", + + "client_id": "{{user `client_id`}}", + "client_secret": "{{user `client_secret`}}", + "resource_group_name": "{{user `resource_group`}}", + "storage_account": "{{user `storage_account`}}", + "subscription_id": "{{user `subscription_id`}}", + + "capture_container_name": "images", + "capture_name_prefix": "packer", + + "os_type": "Linux", + "custom_managed_image_resource_group_name": "MyResourceGroup", + "custom_managed_image_name": "MyImage", + "managed_image_resource_group_name": "PackerImages", + "managed_image_name": "MyImage", + + "azure_tags": { + "dept": "engineering", + "task": "image deployment" + }, + + "location": "West US", + "vm_size": "Standard_A2" + } + ], + "provisioners": [{ + "execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'", + "inline": [ + "apt-get update", + "apt-get upgrade -y", + "/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync" + ], + "inline_shebang": "/bin/sh -x", + "type": "shell" + }] +} diff --git a/examples/azure/ubuntu_managed_image.json b/examples/azure/ubuntu_managed_image.json new file mode 100644 index 000000000..b8e480ba4 --- /dev/null +++ b/examples/azure/ubuntu_managed_image.json @@ -0,0 +1,48 @@ +{ + "variables": { + "client_id": "{{env `ARM_CLIENT_ID`}}", + "client_secret": "{{env `ARM_CLIENT_SECRET`}}", + "resource_group": "{{env `ARM_RESOURCE_GROUP`}}", + "storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}", + "subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}" + }, + "builders": [{ + "type": "azure-arm", + + "client_id": "{{user `client_id`}}", + "client_secret": "{{user `client_secret`}}", + "resource_group_name": "{{user `resource_group`}}", + "storage_account": "{{user `storage_account`}}", + "subscription_id": "{{user `subscription_id`}}", + + "capture_container_name": "images", + "capture_name_prefix": "packer", + + "os_type": "Linux", + "image_publisher": "Canonical", + "image_offer": "UbuntuServer", + "image_sku": "16.04-LTS", + + "managed_image_resource_group_name": "PackerImages", + "managed_image_name": "MyUbuntuImage", + + "azure_tags": { + "dept": "engineering", + "task": "image deployment" + }, + + "location": "West US", + "vm_size": "Standard_A2" + }], + "provisioners": [{ + "execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'", + "inline": [ + "apt-get update", + "apt-get upgrade -y", + + "/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync" + ], + "inline_shebang": "/bin/sh -x", + "type": "shell" + }] +}