forked from NeCTAR-RC/nectar-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
centos-7-x86_64.json
41 lines (41 loc) · 1.07 KB
/
centos-7-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
{
"builders": [
{
"type": "qemu",
"name": "centos-7-x86_64",
"vm_name": "centos-7-x86_64",
"accelerator": "kvm",
"disk_size": 4096,
"format": "raw",
"headless": true,
"http_directory": "http",
"iso_url": "http://mirrors.rc.nectar.org.au/packer-iso/CentOS-7-x86_64-Minimal-1611.iso",
"iso_checksum": "27bd866242ee058b7a5754e83d8ee8403e216b93d130d800852a96f41c34d86a",
"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> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/centos-7-x86_64-kickstart.cfg<enter><wait>"
]
}
],
"provisioners": [
{
"type": "ansible",
"playbook_file": "ansible/playbook.yml"
},
{
"type": "shell",
"script": "scripts/cleanup.sh"
}
]
}