Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit 59e4d62

Browse files
ryanewelsamuelgundry
authored andcommitted
Add VPC to roboMakerSettings.json
1 parent 6469dad commit 59e4d62

File tree

10 files changed

+17
-12
lines changed

10 files changed

+17
-12
lines changed

roboMakerSettings.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,15 @@
8484
}
8585
},
8686
"simulation":{
87-
"maxJobDurationInSeconds":28800,
87+
"outputLocation":"<S3 bucket name for job outputs>",
8888
"failureBehavior":"Fail",
89+
"maxJobDurationInSeconds":28800,
8990
"iamRole":"<IAM role ARN for RoboMaker>",
90-
"outputLocation":"<S3 bucket name for job outputs>"
91+
"vpcConfig": {
92+
"assignPublicIp": true,
93+
"securityGroups": [ "<security group id>" ],
94+
"subnets": [ "<subnet id>" ]
95+
}
9196
}
9297
}
9398
},

robot_ws/src/cloudwatch_robot/config/cloudwatch_metrics_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# An optional metric namespace parameter. If provided it will set the namespace for all metrics provided by this node to
2-
# the provided value. If the node is running on a B9 system then the provided launch file will ignore this parameter in
3-
# favor of the namespace specified by the B9 ecosystem
2+
# the provided value. If the node is running on a AWS RoboMaker system then the provided launch file will ignore this parameter in
3+
# favor of the namespace specified by the RoboMaker ecosystem
44
aws_metrics_namespace: "robomaker_cloudwatch_monitoring_example"
55

66
# An optional list of topics to listen to. If not provided or is empty the node will just listen on the global "metrics"

simulation_ws/src/aws_robomaker_simulation_bookstore/launch/bookstore.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<launch>
2-
<!-- Always set GUI to false for B9 Simulation
2+
<!-- Always set GUI to false for AWS RoboMaker Simulation
33
Use gui:=true on roslaunch command-line to run with a gui.
44
-->
55
<arg name="gui" default="false"/>

simulation_ws/src/aws_robomaker_simulation_bookstore/launch/bookstore_turtlebot_navigation.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<arg name="z_pos" value="0.30"/>
1414

1515
<!--
16-
Always set GUI to false for B9 Simulation
16+
Always set GUI to false for AWS RoboMaker Simulation
1717
Use gui:=true on roslaunch command-line to run with a gui.
1818
-->
1919
<arg name="gui" default="false"/>

simulation_ws/src/aws_robomaker_simulation_bookstore/routes/route.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Points throughout the bookstore for navigation.
2-
# Compatible with b9_simulations_common route_manager node
2+
# Compatible with aws_robomaker_simulations_common route_manager node
33
mode: random
44
poses:
55
- pose:

simulation_ws/src/aws_robomaker_simulation_common/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ catkin_install_python(PROGRAMS
1919
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
2020
)
2121

22-
# Copy the rviz models for easier access in B9 RViz
22+
# Copy the rviz models for easier access in AWS RoboMaker RViz
2323
install(FILES ${turtlebot3_navigation_DIR}/../rviz/turtlebot3_navigation.rviz
2424
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/rviz
2525
RENAME turtlebot3_navigation.rviz

simulation_ws/src/cloudwatch_simulation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install(DIRECTORY launch worlds
1212
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
1313
)
1414

15-
# Copy the rviz model for easier access in B9 RViz
15+
# Copy the rviz model for easier access in AWS RoboMaker RViz
1616
install(FILES ${turtlebot3_description_DIR}/../rviz/model.rviz
1717
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/rviz
1818
RENAME turtlebot3_model.rviz

simulation_ws/src/cloudwatch_simulation/launch/bookstore.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A bookstore with a Turtlebot located initially near the service desk.
44
-->
55

6-
<!-- Always set GUI to false for B9 Simulation
6+
<!-- Always set GUI to false for AWS RoboMaker Simulation
77
Use gui:=true on roslaunch command-line to run with a gui.
88
-->
99
<arg name="gui" default="false"/>

simulation_ws/src/cloudwatch_simulation/launch/bookstore_turtlebot_navigation.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<arg name="follow_route" default="true"/>
1818

1919
<!--
20-
Always set GUI to false for B9 Simulation
20+
Always set GUI to false for AWS RoboMaker Simulation
2121
Use gui:=true on roslaunch command-line to run with a gui.
2222
-->
2323
<arg name="gui" default="false"/>

simulation_ws/src/cloudwatch_simulation/launch/empty_world.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<launch>
2-
<!-- Always set GUI to false for B9 Simulation
2+
<!-- Always set GUI to false for AWS RoboMaker Simulation
33
Use gui:=true on roslaunch command-line to run with a gui.
44
-->
55
<arg name="gui" default="false"/>

0 commit comments

Comments
 (0)