aboutsummaryrefslogtreecommitdiffstats
path: root/packer/templates
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2016-09-30 14:18:42 +0200
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2016-09-30 14:18:42 +0200
commitca10ec28ff901985f5d9e8d84540a26f576b83b3 (patch)
tree89ff2447f0925657d3da36c5b53e31bc3a392a50 /packer/templates
parent7d2f6ee8eb56b6b537c8bf628ef843a4fe89dfb8 (diff)
Add local basebuild variant for testing
Run with: packer build -var-file=vars/cloud-env.json -var-file=vars/ubuntu-16.04.json templates/basebuild-local-kvm.json Change-Id: I15ed4eb3c7f74c7d11095ffe8a543b0b7ba4c7f8 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'packer/templates')
-rw-r--r--packer/templates/basebuild-local-kvm.json85
1 files changed, 85 insertions, 0 deletions
diff --git a/packer/templates/basebuild-local-kvm.json b/packer/templates/basebuild-local-kvm.json
new file mode 100644
index 00000000..4c36ddda
--- /dev/null
+++ b/packer/templates/basebuild-local-kvm.json
@@ -0,0 +1,85 @@
+{
+ "variables": {
+ "stack_tenant": null,
+ "stack_user": null,
+ "stack_pass": null,
+ "stack_network": null,
+
+ "base_image": null,
+ "cloud_user": null,
+ "distro": null,
+ "cloud_user_data": null
+ },
+ "builders": [
+{
+ "type": "qemu",
+ "iso_url": "http://releases.ubuntu.com/16.04/ubuntu-16.04-server-amd64.iso",
+ "iso_checksum": "23e97cd5d4145d4105fbf29878534049",
+ "iso_checksum_type": "md5",
+
+ "output_directory": "output_ubuntu",
+
+ "shutdown_command": "echo '{{user `password`}}'|sudo -S shutdown -P now",
+
+ "disk_size": 20000,
+ "format": "qcow2",
+ "headless": false,
+ "accelerator": "kvm",
+
+ "http_directory": "httpdir",
+ "http_port_min": 10082,
+ "http_port_max": 10089,
+ "ssh_host_port_min": 2222,
+ "ssh_host_port_max": 2229,
+ "ssh_username": "ubuntu",
+ "ssh_password": "ubuntu",
+ "ssh_port": 22,
+ "ssh_wait_timeout": "11m",
+
+ "vm_name": "jenkins-new-test",
+ "net_device": "virtio-net",
+ "disk_interface": "virtio",
+ "boot_wait": "5s",
+
+ "boot_command": [
+ "<enter><wait><f6><esc><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
+ "/install/vmlinuz url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
+ "debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
+ "hostname=jenkinstest ",
+
+ "keyboard-configuration/modelcode=SKIP ",
+ "keyboard-configuration/layout=USA ",
+ "keyboard-configuration/variant=USA ",
+
+ "passwd/user-fullname=ubuntu ",
+ "passwd/user-password-again=ubuntu ",
+ "passwd/user-password=ubuntu ",
+ "passwd/username=ubuntu ",
+
+ "initrd=/install/initrd.gz -- <enter>"
+ ]
+
+ }
+ ],
+ "provisioners": [
+ {
+ "type": "shell",
+ "inline": ["mkdir -p /tmp/packer"]
+ },
+ {
+ "type": "file",
+ "source": "provision/basebuild/",
+ "destination": "/tmp/packer"
+ },
+ {
+ "type": "shell",
+ "scripts": [
+ "provision/baseline.sh",
+ "provision/basebuild.sh",
+ "provision/agl_dependencies.sh",
+ "provision/system_reseal.sh"
+ ],
+ "execute_command": "chmod +x {{ .Path }}; if [ \"$UID\" == \"0\" ]; then {{ .Vars }} '{{ .Path }}'; else echo 'ubuntu' | {{ .Vars }} sudo -S -E sh '{{ .Path }}'; fi"
+ }
+ ]
+}