-
Notifications
You must be signed in to change notification settings - Fork 0
/
03-install_octopus.json
61 lines (61 loc) · 1.32 KB
/
03-install_octopus.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
{
"builders": [
{
"type": "virtualbox-ovf",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"4096"
],
[
"modifyvm",
"{{.Name}}",
"--vram",
"48"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"2"
]
],
"source_path": "{{user `source_path`}}",
"headless": "{{ user `headless` }}",
"communicator": "winrm",
"winrm_username": "administrator",
"winrm_password": "vagrant",
"winrm_timeout": "12h",
"shutdown_command": "shutdown /s /t 10 /f /d p:4:1 /c \"Packer Shutdown\"",
"shutdown_timeout": "1h",
"output_directory": "./output-{{user `os_name`}}-{{ user `image_name`}}/",
"vm_name": "{{user `os_name`}}-{{ user `image_name`}}",
"guest_additions_mode": "disable"
}
],
"provisioners": [
{
"type": "powershell",
"script": "scripts/install_octopus_and_sql.ps1",
"elevated_user": "administrator",
"elevated_password": "vagrant",
"valid_exit_codes": [
0,
1,
2,
3,
5,
10,
15
]
}
],
"variables": {
"os_name": "",
"headless": "true",
"source_path": "",
"image_name": "octopus"
}
}