-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtemplate.json
69 lines (69 loc) · 2.16 KB
/
template.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"push": {
"name": "",
"vcs": true
},
"variables": {
"atlas_username": "{{env `ATLAS_USERNAME`}}",
"atlas_name": "{{env `ATLAS_NAME`}}"
},
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/base.sh",
"scripts/virtualbox.sh",
"scripts/vagrant.sh",
"scripts/cleanup.sh",
"scripts/zerodisk.sh"
],
"environment_vars": [
"BAHMNI_VERSION=<? version ?>",
"ANSIBLE_VERSION=<? ansible_version ?>"
],
"execute_command": "echo 'vagrant' | {{ .Vars }} sudo -E -S bash '{{.Path}}'"
}],
"builders": [{
"type": "virtualbox-iso",
"boot_command": [
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ks.cfg<enter><wait>"
],
"boot_wait": "10s",
"disk_size": 81920,
"guest_os_type": "RedHat_64",
"headless": true,
"http_directory": "http",
"iso_urls": [
"iso/CentOS-6.8-x86_64-minimal.iso",
"http://mirror.0x.sg/centos/6.8/isos/x86_64/CentOS-6.8-x86_64-minimal.iso"
],
"iso_checksum_type": "md5",
"iso_checksum": "0ca12fe5f28c2ceed4f4084b41ff8a0b",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo 'vagrant'|sudo -S /sbin/halt -h -p",
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"virtualbox_version_file": ".vbox_version",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "2048"],
["modifyvm", "{{.Name}}", "--cpus", "1"]
]
}],
"post-processors": [
[{
"type": "vagrant",
"keep_input_artifact": true
}, {
"type": "atlas",
"only": ["virtualbox-iso"],
"artifact": "bahmni-team/bahmni",
"artifact_type": "vagrant.box",
"metadata": {
"provider": "virtualbox",
"version": "<? version ?>",
"created_at": "{{timestamp}}"
}
}]
]
}