From e866286a4411138c49e329b7e71f67d9b187edba Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Fri, 10 Mar 2017 18:37:04 +0100 Subject: Templates for Centos 7.3 and Ubuntu 16.04 These were tested with qemu (2.8.0), virtualbox (5.1.16) and vmplayer (12.5.2-4638234). Using the qemu builder is preferable as it creates a qcow2 file directly. The unattended install is configured to install the necessary packages for ansible which will be needed to provision the VM. The rest is still pretty minimal. --- centos-7.3-x86_64.json | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 centos-7.3-x86_64.json (limited to 'centos-7.3-x86_64.json') diff --git a/centos-7.3-x86_64.json b/centos-7.3-x86_64.json new file mode 100644 index 0000000..e3ec622 --- /dev/null +++ b/centos-7.3-x86_64.json @@ -0,0 +1,91 @@ +{ + "variables": { + "iso_url": "http://mirrors.kernel.org/centos/7/isos/x86_64/CentOS-7-x86_64-NetInstall-1611.iso", + "iso_checksum": "f2f7367deb90a25822947660c71638333ca0eceeabecc2d631be6cd508c24494", + "iso_checksum_type": "sha256", + "vm_name": "packer-centos-x86_64", + "http_dir": "http", + "kickstart_path": "centos-7.3/anaconda-ks.cfg", + "shutdown_command": "systemctl poweroff" + }, + "builders": [{ + "type": "qemu", + "iso_url": "{{ user `iso_url` }}", + "iso_checksum": "{{ user `iso_checksum` }}", + "iso_checksum_type": "{{ user `iso_checksum_type` }}", + "output_directory": "output-centos-x86_64-{{ build_type }}-{{ timestamp }}", + "vm_name": "{{ user `vm_name` }}", + "format": "qcow2", + "disk_size": "{{ user `disk_size` }}", + "disk_interface": "virtio-scsi", + "headless": "{{ user `headless` }}", + "http_directory": "{{ user `http_dir` }}", + "boot_command": [ + "", + "linux inst.gpt biosdevname=0 net.ifnames=0 ", + "inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}", + "" + ], + "boot_wait": "{{ user `boot_wait` }}", + "ssh_timeout": "{{ user `ssh_timeout` }}", + "ssh_username": "{{ user `ssh_username` }}", + "ssh_password": "{{ user `ssh_password` }}", + "shutdown_command": "{{ user `shutdown_command` }}", + "qemuargs": [ + ["-m", "{{ user `memory` }}"], + ["-smp", "{{ user `cpus` }}"] + ] + }, { + "type": "virtualbox-iso", + "guest_os_type": "RedHat_64", + "iso_url": "{{ user `iso_url` }}", + "iso_checksum": "{{ user `iso_checksum` }}", + "iso_checksum_type": "{{ user `iso_checksum_type` }}", + "output_directory": "output-centos-x86_64-{{ build_type }}-{{ timestamp }}", + "vm_name": "{{ user `vm_name` }}", + "disk_size": "{{ user `disk_size` }}", + "headless": "{{ user `headless` }}", + "http_directory": "{{ user `http_dir` }}", + "boot_command": [ + "", + "linux inst.gpt biosdevname=0 net.ifnames=0 ", + "inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}", + "" + ], + "boot_wait": "{{ user `boot_wait` }}", + "ssh_timeout": "{{ user `ssh_timeout` }}", + "ssh_username": "{{ user `ssh_username` }}", + "ssh_password": "{{ user `ssh_password` }}", + "shutdown_command": "{{ user `shutdown_command` }}", + "vboxmanage": [ + ["modifyvm", "{{ .Name }}", "--memory", "{{ user `memory` }}"], + ["modifyvm", "{{ .Name }}", "--cpus", "{{ user `cpus` }}"] + ] + }, { + "type": "vmware-iso", + "guest_os_type": "centos-64", + "iso_url": "{{ user `iso_url` }}", + "iso_checksum": "{{ user `iso_checksum` }}", + "iso_checksum_type": "{{ user `iso_checksum_type` }}", + "output_directory": "output-centos-x86_64-{{ build_type }}-{{ timestamp }}", + "vm_name": "{{ user `vm_name` }}", + "disk_size": "{{ user `disk_size` }}", + "headless": "{{ user `headless` }}", + "http_directory": "{{ user `http_dir` }}", + "boot_command": [ + "", + "linux inst.gpt biosdevname=0 net.ifnames=0 ", + "inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{ user `kickstart_path` }}", + "" + ], + "boot_wait": "{{ user `boot_wait` }}", + "ssh_timeout": "{{ user `ssh_timeout` }}", + "ssh_username": "{{ user `ssh_username` }}", + "ssh_password": "{{ user `ssh_password` }}", + "shutdown_command": "{{ user `shutdown_command` }}", + "vmx_data": { + "memsize": "{{ user `memory` }}", + "numvcpus": "{{ user `cpus` }}" + } + }] +} -- cgit v1.2.3-55-g7522