-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcloudstack-simulator.json
More file actions
66 lines (66 loc) · 2.37 KB
/
cloudstack-simulator.json
File metadata and controls
66 lines (66 loc) · 2.37 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"builders": [
{
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz noapic preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{ .Name }} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- <enter>"
],
"vm_name": "cloudstack-simulator-{{user `cloudstack_branch`}}-{{timestamp}}",
"disk_size": 30000,
"guest_os_type": "Ubuntu_64",
"http_directory": "http",
"iso_checksum_type": "md5",
"iso_url": "http://releases.ubuntu.com/12.04/ubuntu-12.04.4-server-amd64.iso",
"iso_checksum": "e83adb9af4ec0a039e6a5c6e145a34de",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_username": "vagrant",
"headless": "true",
"type": "virtualbox-iso",
"output_directory": "output-vbox-iso-{{timestamp}}",
"shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
"ssh_wait_timeout": "20m",
"virtualbox_version_file": ".vbox_version",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"1024"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"1"
]
]
}
],
"provisioners": [
{
"type": "shell",
"environment_vars": [
"cloudstack_branch={{user `cloudstack_branch`}}"
],
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
"scripts": [
"scripts/finish.sh"
]
}
],
"post-processors": [
{
"output": "builds/{{.Provider}}/cloudstack-simulator-{{user `cloudstack_branch`}}-{{timestamp}}.box",
"type": "vagrant"
}
],
"variables": {
"cloudstack_branch": "4.3.0-forward"
}
}