dda-devops-build/doc/architecture/Domain.md

40 lines
515 B
Markdown
Raw Normal View History

2023-03-12 15:55:15 +00:00
# Domain
```mermaid
classDiagram
class Build {
2023-03-12 18:09:32 +00:00
stage
name
project_root_path
module
build_dir_name
2023-03-12 15:55:15 +00:00
}
2023-03-12 16:40:10 +00:00
2023-03-12 18:09:32 +00:00
class C4kBuild {
executabel_name
c4k_mixin_config
c4k_mixin_auth
}
class DnsRecord {
fqdn
ipv4
ipv6
}
C4kBuild *-- DnsRecord
```
# Infrastructure
```mermaid
classDiagram
2023-03-12 16:40:10 +00:00
class ProjectRepository {
get_build(project): Build
set_build(project, build)
}
2023-03-12 18:09:32 +00:00
2023-03-12 15:55:15 +00:00
```