-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsubmit.json
More file actions
54 lines (54 loc) · 1.31 KB
/
submit.json
File metadata and controls
54 lines (54 loc) · 1.31 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
{
"builders": [
{
"ami_name": "submit-example {{timestamp}}",
"instance_type": "t2.micro",
"profile": "submit",
"source_ami": "ami-0b33d91d",
"ssh_username": "ec2-user",
"region": "us-east-1",
"type": "amazon-ebs"
}
],
"provisioners": [
{
"destination": "/tmp/nginx.conf",
"source": "files/nginx.conf",
"type": "file"
},
{
"destination": "rabbit_util",
"source": "files/rabbit_util",
"type": "file"
},
{
"destination": "submit_shell",
"source": "files/submit_shell",
"type": "file"
},
{
"destination": "submit.ini",
"source": "files/submit.ini",
"type": "file"
},
{
"destination": "update_submit",
"source": "files/update_submit",
"type": "file"
},
{
"scripts": [
"build_scripts/yum_update.sh",
"build_scripts/add_submit_user.sh",
"build_scripts/add_worker_users.sh",
"build_scripts/install_nginx.sh",
"build_scripts/install_postgresql.sh",
"build_scripts/install_rabbitmq.sh",
"build_scripts/configure_python.sh",
"build_scripts/configure_application.sh",
"build_scripts/configure_rabbit_util.sh"
],
"type": "shell"
}
]
}