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

63 lines
1.1 KiB
Markdown
Raw Normal View History

2023-03-12 15:55:15 +00:00
# Domain
```mermaid
classDiagram
2023-03-14 11:04:52 +00:00
class Devops {
2023-04-28 12:49:23 +00:00
<<AggregateRoot>>
2023-03-12 18:09:32 +00:00
name
module
2023-04-29 18:19:07 +00:00
stage
2023-03-12 18:09:32 +00:00
build_dir_name
2023-04-29 18:19:07 +00:00
project_root_path
2023-03-12 15:55:15 +00:00
}
2023-03-12 16:40:10 +00:00
class Image {
2023-04-29 18:19:07 +00:00
image_dockerhub_user
image_dockerhub_password
image_publish_tag
image_build_dir_name
image_use_package_common_files
image_build_commons_path
image_build_commons_dir_name
2023-03-14 18:11:34 +00:00
}
2023-03-14 14:07:47 +00:00
class C4k {
2023-04-29 18:19:07 +00:00
c4k_executabel_name
2023-03-12 18:09:32 +00:00
c4k_mixin_config
c4k_mixin_auth
}
class DnsRecord {
fqdn
ipv4
ipv6
}
2023-04-22 12:40:40 +00:00
class Release {
2023-04-29 18:19:07 +00:00
release_main_branch
release_config_file
2023-04-22 12:40:40 +00:00
}
class ReleaseContext {
release_type
2023-04-29 18:19:07 +00:00
release_version
release_current_branch
2023-04-22 12:40:40 +00:00
}
Devops *-- "0..1" Image: spcialized_builds
Devops *-- "0..1" C4k: spcialized_builds
2023-04-29 20:03:44 +00:00
Devops *-- "0..1" Release: mixins
2023-03-14 14:07:47 +00:00
C4k *-- DnsRecord
2023-04-22 12:40:40 +00:00
Release *-- "0..1" ReleaseContext
2023-03-12 18:09:32 +00:00
```
# Infrastructure
```mermaid
classDiagram
2023-03-12 16:40:10 +00:00
class ProjectRepository {
2023-03-14 11:04:52 +00:00
get_devops(project): Devops
set_devops(project, build)
}
2023-03-12 15:55:15 +00:00
```