-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add three additional sample architectures
- Loading branch information
Showing
4 changed files
with
490 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,182 @@ | ||
Frontend: | ||
name: Frontend | ||
template: Frontend | ||
interfaces: | ||
frontend_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: APIGateway | ||
template: Calls | ||
- to: Kubernetes | ||
template: Hosted on | ||
|
||
APIGateway: | ||
name: API Gateway | ||
template: Microservice | ||
relations: | ||
- to: Frontend | ||
template: Calls | ||
- to: catalog_REST | ||
template: Calls | ||
- to: orders_REST | ||
template: Calls | ||
- to: users_REST | ||
template: Calls | ||
- to: payment_REST | ||
template: Calls | ||
- to: shipping_REST | ||
template: Calls | ||
- to: Kubernetes | ||
template: Hosted on | ||
|
||
Catalog: | ||
name: Catalog Service | ||
template: Microservice | ||
interfaces: | ||
catalog_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: CatalogDB | ||
template: DB connection | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: MongoDBDriver | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
CatalogDB: | ||
name: CatalogDB | ||
template: Database | ||
|
||
Orders: | ||
name: Order Service | ||
template: Microservice | ||
interfaces: | ||
orders_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: OrdersDB | ||
template: DB connection | ||
- to: shipping_REST | ||
template: Calls | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: MySQLConnectorJ | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
OrdersDB: | ||
name: OrdersDB | ||
template: Database | ||
|
||
Users: | ||
name: User Service | ||
template: Microservice | ||
interfaces: | ||
users_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: UsersDB | ||
template: DB connection | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: MongoDBDriver | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
UsersDB: | ||
name: UsersDB | ||
template: Database | ||
|
||
Payment: | ||
name: Payment Service | ||
template: Microservice | ||
interfaces: | ||
payment_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
Shipping: | ||
name: Shipping Service | ||
template: Microservice | ||
interfaces: | ||
shipping_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: orders_REST | ||
template: Calls | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
Kubernetes: | ||
name: Kubernetes | ||
template: Infrastructure | ||
|
||
SpringBoot: | ||
name: Spring Boot | ||
template: Library | ||
|
||
MongoDBDriver: | ||
name: MongoDB Java Driver | ||
template: Library | ||
|
||
MySQLConnectorJ: | ||
name: MySQL Connector/J | ||
template: Library | ||
|
||
Jackson: | ||
name: Jackson | ||
template: Library | ||
|
||
SLF4J: | ||
name: SLF4J | ||
template: Library | ||
|
||
Logback: | ||
name: Logback | ||
template: Library |
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,150 @@ | ||
WebUI: | ||
name: WebUI Service | ||
template: Microservice | ||
interfaces: | ||
webui_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: recommender_REST | ||
template: Calls | ||
- to: auth_REST | ||
template: Calls | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: Jersey | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
Auth: | ||
name: Auth Service | ||
template: Microservice | ||
interfaces: | ||
auth_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: PersistenceDB | ||
template: DB connection | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: JPA | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
Persistence: | ||
name: Persistence Service | ||
template: Microservice | ||
interfaces: | ||
persistence_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: PersistenceDB | ||
template: DB connection | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: JPA | ||
template: Includes | ||
- to: MySQLConnectorJ | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
Recommender: | ||
name: Recommender Service | ||
template: Microservice | ||
interfaces: | ||
recommender_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: PersistenceDB | ||
template: DB connection | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
Image: | ||
name: Image Service | ||
template: Microservice | ||
interfaces: | ||
image_REST: | ||
name: REST | ||
template: REST | ||
relations: | ||
- to: PersistenceDB | ||
template: DB connection | ||
- to: Kubernetes | ||
template: Hosted on | ||
- to: SpringBoot | ||
template: Includes | ||
- to: Jackson | ||
template: Includes | ||
- to: SLF4J | ||
template: Includes | ||
- to: Logback | ||
template: Includes | ||
|
||
PersistenceDB: | ||
name: PersistenceDB | ||
template: Database | ||
|
||
Kubernetes: | ||
name: Kubernetes | ||
template: Infrastructure | ||
|
||
SpringBoot: | ||
name: Spring Boot | ||
template: Library | ||
|
||
JPA: | ||
name: JPA | ||
template: Library | ||
|
||
MySQLConnectorJ: | ||
name: MySQL Connector/J | ||
template: Library | ||
|
||
Jackson: | ||
name: Jackson | ||
template: Library | ||
|
||
Jersey: | ||
name: Jersey | ||
template: Library | ||
|
||
SLF4J: | ||
name: SLF4J | ||
template: Library | ||
|
||
Logback: | ||
name: Logback | ||
template: Library |
Oops, something went wrong.