You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dda-devops-build/doc/architecture/Domain.md

40 lines
515 B
Markdown

1 year ago
# Domain
```mermaid
classDiagram
class Build {
stage
name
project_root_path
module
build_dir_name
1 year ago
}
class C4kBuild {
executabel_name
c4k_mixin_config
c4k_mixin_auth
}
class DnsRecord {
fqdn
ipv4
ipv6
}
C4kBuild *-- DnsRecord
```
# Infrastructure
```mermaid
classDiagram
class ProjectRepository {
get_build(project): Build
set_build(project, build)
}
1 year ago
```