diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2016-09-30 14:18:42 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2016-09-30 14:18:42 +0200 |
commit | ca10ec28ff901985f5d9e8d84540a26f576b83b3 (patch) | |
tree | 89ff2447f0925657d3da36c5b53e31bc3a392a50 /packer | |
parent | 7d2f6ee8eb56b6b537c8bf628ef843a4fe89dfb8 (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')
-rw-r--r-- | packer/httpdir/preseed.cfg | 24 | ||||
-rw-r--r-- | packer/templates/basebuild-local-kvm.json | 85 |
2 files changed, 109 insertions, 0 deletions
diff --git a/packer/httpdir/preseed.cfg b/packer/httpdir/preseed.cfg new file mode 100644 index 00000000..0674f458 --- /dev/null +++ b/packer/httpdir/preseed.cfg @@ -0,0 +1,24 @@ +choose-mirror-bin mirror/http/proxy string +d-i debian-installer/framebuffer boolean false +d-i debconf/frontend select noninteractive +d-i base-installer/kernel/override-image string linux-server +d-i clock-setup/utc boolean true +d-i clock-setup/utc-auto boolean true +d-i finish-install/reboot_in_progress note +d-i grub-installer/only_debian boolean true +d-i grub-installer/with_other_os boolean true +d-i netcfg/get_domain string unassigned-domain +d-i netcfg/get_hostname string unassigned-hostname +d-i partman-auto/method string regular +d-i partman/choose_partition select finish +d-i partman/confirm boolean true +d-i partman/confirm_nooverwrite boolean true +d-i partman/confirm_write_new_label boolean true +d-i pkgsel/include string openssh-server +d-i pkgsel/install-language-support boolean false +d-i pkgsel/update-policy select unattended-upgrades +d-i pkgsel/upgrade select none +d-i time/zone string CET +d-i user-setup/allow-password-weak boolean true +d-i user-setup/encrypt-home boolean false +tasksel tasksel/first multiselect standard, ubuntu-server 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" + } + ] +} |