-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BAIP-260/update docker compose #40
Conversation
WalkthroughThe updates primarily focus on reorganizing and renaming Docker compose file profiles in the Fleet Protocol v1 to enhance clarity and efficiency in container startup configurations. Additionally, various JSON configuration files for virtual vehicle scenarios and the virtual vehicle utility have been modified to adjust stop delays and wait times. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant DockerCompose
participant Container
User->>DockerCompose: Start profile "for-virtual-fleet"
DockerCompose->>Container[fleet-protocol-http-api]: Start
DockerCompose->>Container[PostgreSQL]: Start
DockerCompose->>Container[integration-layer]: Start
DockerCompose->>Container[virtual-fleet-management]: Start
DockerCompose->>Container[fleet-management-http-api]: Start
DockerCompose->>Container[mission-module-display]: Start
Container[fleet-protocol-http-api]-->>User: Running
Container[PostgreSQL]-->>User: Running
Container[integration-layer]-->>User: Running
Container[virtual-fleet-management]-->>User: Running
Container[fleet-management-http-api]-->>User: Running
Container[mission-module-display]-->>User: Running
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (11)
- README.md (1 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle/scenario.json (2 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_1/scenario1.json (2 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_2/scenario1.json (1 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_3/scenario1.json (1 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_4/scenario1.json (2 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_5/scenario1.json (1 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_6/scenario1.json (1 hunks)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_7/scenario1.json (1 hunks)
- configuration/virtual-vehicle-utility/config.json (1 hunks)
- docker-compose.yml (8 hunks)
Files skipped from review due to trivial changes (4)
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_5/scenario1.json
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_6/scenario1.json
- configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_7/scenario1.json
- configuration/virtual-vehicle-utility/config.json
Additional comments not posted (21)
configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_3/scenario1.json (3)
6-6
: Mission1 delay updated to 0 seconds.This change sets the delay for mission1 to 0 seconds, which seems appropriate for immediate start scenarios.
12-13
: Added "Těšínská" stop in mission1.The new stop "Těšínská" has been added to mission1, which aligns with the overall update.
19-19
: Mission3 delay updated to 260 seconds.This change increases the delay for mission3, which seems appropriate for staggered start scenarios.
configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_4/scenario1.json (2)
6-6
: Mission2 delay updated to 0 seconds.This change sets the delay for mission2 to 0 seconds, which seems appropriate for immediate start scenarios.
25-25
: Mission3 delay updated to 260 seconds.This change increases the delay for mission3, which seems appropriate for staggered start scenarios.
configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_2/scenario1.json (3)
6-6
: Mission1 delay updated to 0 seconds.This change sets the delay for mission1 to 0 seconds, which seems appropriate for immediate start scenarios.
12-13
: Added "Těšínská" stop in mission1.The new stop "Těšínská" has been added to mission1, which aligns with the overall update.
19-19
: Mission2 delay updated to 220 seconds.This change increases the delay for mission2, which seems appropriate for staggered start scenarios.
configuration/virtual-fleet-management/scenarios/default/virtual_vehicle/scenario.json (3)
11-13
: Added "Těšínská" stop in mission1.The new stop "Těšínská" has been added to mission1, which aligns with the overall update.
19-19
: Mission2 delay updated to 220 seconds.This change increases the delay for mission2, which seems appropriate for staggered start scenarios.
38-38
: Mission3 delay updated to 260 seconds.This change increases the delay for mission3, which seems appropriate for staggered start scenarios.
configuration/virtual-fleet-management/scenarios/default/virtual_vehicle_1/scenario1.json (3)
11-13
: Addition of stop "Těšínská" looks good.The new stop is correctly added to the stops list in mission 1.
19-19
: Delay update for mission 2 looks good.The delay for mission 2 is correctly updated to 220 seconds.
38-38
: Delay update for mission 3 looks good.The delay for mission 3 is correctly updated to 260 seconds.
docker-compose.yml (6)
3-5
: Renaming and image update forvirtual-vehicle
looks good.The service is correctly renamed from
virtual-vehicle-utility
tovirtual-vehicle
with an updated image version.
57-57
: Profile updates forexternal-server
look good.The profiles for the
external-server
service are correctly updated.
70-70
: Profile updates forhttp-api
look good.The profiles for the
http-api
service are correctly updated.
88-88
: Profile updates forintegration-layer
look good.The profiles for the
integration-layer
service are correctly updated.
100-100
: Profile updates formanagement-api
look good.The profiles for the
management-api
service are correctly updated.
118-118
: Profile updates forvirtual-fleet-management
look good.The profiles for the
virtual-fleet-management
service are correctly updated.README.md (1)
49-61
: Profile descriptions look good.The profiles for starting different containers are correctly added to the documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Summary by CodeRabbit
New Features
Configuration Changes
Improvements