3 Commits

Author SHA1 Message Date
97991f243f Hlæja concept v0.6.0 2025-04-05 13:28:42 +02:00
785095aa80 update dependency.md with missing/planed usages 2025-02-17 10:45:11 +01:00
a4de9872f7 Hlæja concept v0.5.0 2025-02-07 17:50:43 +01:00
5 changed files with 84 additions and 28 deletions

View File

@@ -36,10 +36,14 @@ Plugin containing gradle task and setting used by common, library, and service r
Library containing all internal messages for services. GitHub [Hlæja Common Messages](https://github.com/swordsteel/hlaeja-common-messages) Library containing all internal messages for services. GitHub [Hlæja Common Messages](https://github.com/swordsteel/hlaeja-common-messages)
#### Common JWT #### JWT
Library containing JWT for services. GitHub [Hlæja JWT](https://github.com/swordsteel/hlaeja-jwt) Library containing JWT for services. GitHub [Hlæja JWT](https://github.com/swordsteel/hlaeja-jwt)
#### Test
Library containing test assertion extension and test container annotation. GitHub [Hlæja Test](https://github.com/swordsteel/hlaeja-test)
### Services ### Services
#### Device Data #### Device Data
@@ -65,3 +69,7 @@ API for register devices when flashed. GitHub [Hlæja Registry API](https://gith
#### Account Registry #### Account Registry
Store Information of accounts. GitHub [Hlæja Account Registry](https://github.com/swordsteel/hlaeja-account-registry) Store Information of accounts. GitHub [Hlæja Account Registry](https://github.com/swordsteel/hlaeja-account-registry)
#### Management
Management ui. GitHub [Hlæja Account Registry](https://github.com/swordsteel/hlaeja-management)

View File

@@ -5,6 +5,7 @@
```mermaid ```mermaid
graph TD graph TD
; ;
subgraph BE[Backend Services] subgraph BE[Backend Services]
subgraph HDR[Hlæja Device Registry] subgraph HDR[Hlæja Device Registry]
HDRS[Service] --> HDRD[(Postgres)] HDRS[Service] --> HDRD[(Postgres)]
@@ -20,23 +21,32 @@ graph TD
end end
end end
subgraph HDA[Hlæja Device API] subgraph HDA[Hlæja Device API]
HDAS[Service] --> HDAD[(Redis)] HDAS[Service] --> HDAR[(Redis)]
end end
subgraph HRA[Hlæja Registry API] subgraph HRA[Hlæja Registry API]
HRAS[Service] HRAS[Service]
end end
subgraph HM[Hlæja Management] subgraph HM[Hlæja Management]
HMS[Service] HMS[Service] -.-> HMR[(Redis)]
end end
subgraph HG[Hlæja Gateway]
HGE[Nginx]
end
HG -.-> HDA
HG -.-> HRA
HG -.-> HM
HM --> HAR
HM -.-> HDR
HM -.-> HDC
HRA --> HAR
HRA --> HDR
HDA --> HDR HDA --> HDR
HDA --> HDC HDA --> HDC
HDA --> HDD HDA --> HDD
HRA --> HDR
HRA --> HAR
HM -.-> HDC
HM -.-> HDR
HM -.-> HAR
``` ```
## Library and Gradle plugin dependency ## Library and Gradle plugin dependency
@@ -44,6 +54,7 @@ graph TD
```mermaid ```mermaid
graph RL graph RL
; ;
CP[Core Plugin] CP[Core Plugin]
subgraph SCP [Common Plugin] subgraph SCP [Common Plugin]
PL[Plugin Library] PL[Plugin Library]
@@ -58,6 +69,7 @@ graph RL
PSIT[Plugin Service Integration Test] PSIT[Plugin Service Integration Test]
PSPR[Plugin Service Process Resource] PSPR[Plugin Service Process Resource]
end end
PLM --> PL PLM --> PL
PLP --> PL PLP --> PL
PCo ---> PL PCo ---> PL
@@ -72,45 +84,51 @@ graph RL
CML[Common Messages Library] CML[Common Messages Library]
PL --> CML PL --> CML
JWT[JWT Library] JL[JWT Library]
PL --> JWT PL --> JL
TL[Test Library]
PL --> TL
DRS[Device Registry Service] DRS[Device Registry Service]
PS --> DRS PS --> DRS
PCe --> DRS PCe --> DRS
TL -.-> DRS
CML --> DRS CML --> DRS
JWT --> DRS JL --> DRS
DDS[Device Data Service] DDS[Device Data Service]
PS --> DDS PS --> DDS
TL -.-> DDS
CML --> DDS CML --> DDS
DCS[Device Configuration Service] DCS[Device Configuration Service]
TL -.-> DCS
PS --> DCS PS --> DCS
CML --> DCS CML --> DCS
AS[Account Service]
TL --> AS
CML --> AS
PS --> AS
PCe --> AS
JL --> AS
DAS[Device API Service] DAS[Device API Service]
CML --> DAS
JWT --> DAS
PS --> DAS PS --> DAS
CML --> DAS
JL --> DAS
PCe --> DAS PCe --> DAS
RAS[Registry API Service] RAS[Registry API Service]
CML --> RAS CML --> RAS
JWT --> RAS JL --> RAS
PS --> RAS PS --> RAS
PCe --> RAS PCe --> RAS
AS[Account Service]
CML --> AS
JWT --> AS
PS --> AS
PCe --> AS
MUS[Management UI Service] MUS[Management UI Service]
CML -.-> MUS CML --> MUS
JWT -.-> MUS JL --> MUS
PS -.-> MUS PS --> MUS
PCe -.-> MUS PCe -.-> MUS
``` ```

View File

@@ -77,7 +77,6 @@ volumes:
- ./cert/registry_api_keystore.p12:/app/resources/cert/keystore.p12 - ./cert/registry_api_keystore.p12:/app/resources/cert/keystore.p12
``` ```
## Account Registry ## Account Registry
### Environment ### Environment
@@ -98,3 +97,20 @@ Mount a local private key into the container. Read [`rsa_key.md`](./rsa_key.md)
volumes: volumes:
- ./cert/account_private_key.pem:/app/resources/cert/private_key.pem - ./cert/account_private_key.pem:/app/resources/cert/private_key.pem
``` ```
## Management
### Environment
```text
SPRING_PROFILES_ACTIVE: docker
```
### Volume
Mount a local public key into the container. Read [rsa_key.md](./rsa_key.md) for how to generate.
```text
volumes:
- ./cert/account_public_key.pem:/app/resources/cert/public_key.pem
```

View File

@@ -8,7 +8,7 @@ networks:
services: services:
device-registry: device-registry:
image: hlaeja-device-registry:0.4.0 image: hlaeja-device-registry:0.5.0
container_name: DeviceRegistry container_name: DeviceRegistry
restart: unless-stopped restart: unless-stopped
environment: environment:
@@ -77,7 +77,7 @@ services:
- ./cert/account_public_key.pem:/app/resources/cert/public_key.pem - ./cert/account_public_key.pem:/app/resources/cert/public_key.pem
account-registry: account-registry:
image: hlaeja-account-registry:0.1.0 image: hlaeja-account-registry:0.2.0
container_name: AccountRegistry container_name: AccountRegistry
restart: unless-stopped restart: unless-stopped
environment: environment:
@@ -89,3 +89,17 @@ services:
# mount a local `account_private_key.pem` into the container. # mount a local `account_private_key.pem` into the container.
volumes: volumes:
- ./cert/account_private_key.pem:/app/resources/cert/private_key.pem - ./cert/account_private_key.pem:/app/resources/cert/private_key.pem
management:
image: hlaeja-management:0.2.0
container_name: Management
restart: unless-stopped
environment:
SPRING_PROFILES_ACTIVE: docker
networks:
- develop
ports:
- 9060:8080
# mount a local `account_public_key.pem` into the container.
volumes:
- ./cert/account_public_key.pem:/app/resources/cert/public_key.pem