-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(docker): document docker container dependency tree (#8496)
- Loading branch information
1 parent
fa05aae
commit 4b32e9a
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
title: "Docker Container Architecture" | ||
--- | ||
|
||
# Docker Container Architecture | ||
|
||
When running DataHub via docker-compose. or helm, the following is a diagram of the containers involved | ||
with running DataHub and their relationships with each other. The helm chart uses helm hooks to determine | ||
the proper ordering of the components whereas docker-compose relies on a series of health checks. | ||
|
||
```text | ||
datahub-frontend-react datahub-actions | ||
\ / | ||
| datahub-upgrade (NoCodeDataMigration, helm only) | ||
| / | ||
datahub-gms (healthy) | ||
| | ||
datahub-upgrade (SystemUpdate completed) | ||
/--------------------/ | \ \------------------------------------------------\ | ||
/ | \-------------------\ \ | ||
mysql-setup (completed) elasticsearch-setup (completed) kafka-setup (completed) (if apply) neo4j (healthy) | ||
| | / \ | ||
| | / \ | ||
mysql (healthy) elasticsearch (healthy) broker (healthy) (if not internal) schema-registry (healthy) | ||
| | ||
zookeeper (healthy) | ||
``` |