This repository has been archived by the owner on May 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
roboMakerSettings.json
109 lines (108 loc) · 3.54 KB
/
roboMakerSettings.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"runConfigurations":[
{
"id":"PersonDetection_Cfg01",
"name":"PersonDetection Robot",
"type":"colcon build",
"cfg":{
"workingDir":"./PersonDetection/robot_ws",
"cmdArgs":""
}
},
{
"id":"PersonDetection_Cfg02",
"name":"PersonDetection Robot",
"type":"colcon bundle",
"cfg":{
"workingDir":"./PersonDetection/robot_ws",
"cmdArgs":""
}
},
{
"id":"PersonDetection_Cfg03",
"name":"PersonDetection Simulation",
"type":"colcon build",
"cfg":{
"workingDir":"./PersonDetection/simulation_ws",
"cmdArgs":""
}
},
{
"id":"PersonDetection_Cfg04",
"name":"PersonDetection Simulation",
"type":"colcon bundle",
"cfg":{
"workingDir":"./PersonDetection/simulation_ws",
"cmdArgs":""
}
},
{
"id":"PersonDetection_SimulationJob1",
"name":"PersonDetection Small House",
"type":"simulation",
"cfg":{
"robotApp":{
"name":"RoboMakerPersonDetectionRobot",
"s3Bucket":"<S3 bucket name for your robot bundle>",
"sourceBundleFile":"./PersonDetection/robot_ws/bundle/output.tar",
"architecture":"X86_64",
"robotSoftwareSuite":{
"version":"<capitalised name of ROS distribution, e.g. Kinetic>",
"name":"ROS"
},
"launchConfig":{
"packageName":"person_detection_robot",
"launchFile":"person_detection.launch"
}
},
"simulationApp":{
"name":"RoboMakerPersonDetectionSimulation",
"s3Bucket":"<S3 bucket name for your simulation bundle>",
"sourceBundleFile":"./PersonDetection/simulation_ws/bundle/output.tar",
"architecture":"X86_64",
"launchConfig":{
"packageName":"person_detection_simulation",
"launchFile":"small_house_turtlebot_navigation.launch",
"environmentVariables":{
"TURTLEBOT3_MODEL":"waffle_pi"
}
},
"robotSoftwareSuite":{
"name":"ROS",
"version":"<capitalised name of ROS distribution, e.g. Kinetic>"
},
"simulationSoftwareSuite":{
"name":"Gazebo",
"version":"<gazebo version number, e.g. 7>"
},
"renderingEngine":{
"name":"OGRE",
"version":"1.x"
}
},
"simulation":{
"outputLocation":"<S3 bucket name for job outputs>",
"failureBehavior":"Fail",
"maxJobDurationInSeconds":28800,
"iamRole":"<IAM role ARN for RoboMaker>",
"vpcConfig": {
"assignPublicIp": true,
"securityGroups": [ "<security group id>" ],
"subnets": [ "<subnet id>" ]
}
}
}
},
{
"id":"PersonDetection_wf1",
"type":"workflow",
"name":"PersonDetection - Build and Bundle All",
"runCfgIds":[
"PersonDetection_Cfg01",
"PersonDetection_Cfg02",
"PersonDetection_Cfg03",
"PersonDetection_Cfg04"
]
}
]
}