forked from NeCTAR-RC/nectar-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubuntu-17.10-x86_64.json
49 lines (49 loc) · 1.47 KB
/
ubuntu-17.10-x86_64.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"builders": [
{
"type": "qemu",
"name": "ubuntu-17.10-x86_64",
"vm_name": "ubuntu-17.10-x86_64",
"accelerator": "kvm",
"disk_size": 2048,
"format": "raw",
"headless": true,
"http_directory": "http",
"iso_url": "http://mirrors.rc.nectar.org.au/packer-iso/ubuntu-17.10-x86_64-mini.iso",
"iso_checksum": "05db73efd450156d81a519d35bc7b8109101e12d7ee8d49da695778df568cb36",
"iso_checksum_type": "sha256",
"ssh_password": "b4dP4ssw0Rd",
"ssh_port": 22,
"ssh_username": "root",
"ssh_wait_timeout": "10000s",
"vnc_bind_address": "0.0.0.0",
"qemuargs": [
[ "-m", "2048M" ],
[ "-cpu", "host" ],
[ "-smp", "2" ]
],
"boot_wait": "5s",
"boot_command": [
"<tab><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"fb=false hostname=ubuntu locale=en_AU ",
"console-keymaps-at/keymap=us console-setup/ask_detect=false ",
"console-setup/layoutcode=us keyboard-configuration/layout=USA keyboard-configuration/variant=USA ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ubuntu-17.10-x86_64-preseed.cfg <enter><wait>"
]
}
],
"provisioners": [
{
"type": "ansible",
"playbook_file": "ansible/playbook.yml",
"extra_arguments": [
"--extra-vars",
"ansible_python_interpreter=/usr/bin/python3"
]
},
{
"type": "shell",
"script": "scripts/cleanup.sh"
}
]
}