
- New diagrams and documents for developer overview - Update conf.py for docs to work w/ readthedocs.io - Add policy and config gen to `make docs` - Update zuul-linter to support checked in images - Last fix to document publishing Change-Id: I4faa1b87032ae5b0e786aa0fd998f809124b7987
24 lines
410 B
Plaintext
24 lines
410 B
Plaintext
' PlantUML file to generate the architecture component diagram
|
|
@startuml
|
|
|
|
frame "Drydock" {
|
|
[Control] ..> [Statemgr]
|
|
[Orchestrator] ..> [Statemgr]
|
|
[Orchestrator] ..> [Ingester]
|
|
[Orchestrator] ..> [Driver]
|
|
}
|
|
|
|
database "Postgres" {
|
|
SQL - [drydock_db]
|
|
}
|
|
|
|
HTTP - [uWSGI]
|
|
[uWSGI] --> [Keystone Middleware]
|
|
[Keystone Middleware] --> WSGI
|
|
WSGI - [Control]
|
|
[Statemgr] --> [SQL]
|
|
[Driver] --> [MAAS]
|
|
|
|
|
|
@enduml
|