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
|
|
|
|
2023-03-17 16:27:36 +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 11:22:05 +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-05-10 17:52:53 +00:00
|
|
|
release_type
|
2023-04-29 18:19:07 +00:00
|
|
|
release_main_branch
|
|
|
|
release_current_branch
|
2023-05-10 07:28:43 +00:00
|
|
|
version
|
2023-05-05 09:57:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class BuildFile {
|
2023-05-10 07:28:43 +00:00
|
|
|
<<AggregateRoot>>
|
|
|
|
file_path [id]
|
2023-05-05 09:57:36 +00:00
|
|
|
content
|
2023-05-11 07:20:59 +00:00
|
|
|
build_file_type()
|
|
|
|
getVersion()
|
|
|
|
setVersion(version)
|
2023-05-05 09:57:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class Version {
|
2023-05-10 07:28:43 +00:00
|
|
|
get_version_string()
|
|
|
|
create_major()
|
|
|
|
create_minor()
|
2023-05-10 17:37:15 +00:00
|
|
|
create_patch()
|
|
|
|
create_bump(snapshot_suffix)
|
2023-04-22 12:40:40 +00:00
|
|
|
}
|
|
|
|
|
2023-04-29 12:53:59 +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-05-10 07:28:43 +00:00
|
|
|
Release o-- "0..1" BuildFile: primary_release_file
|
|
|
|
Release o-- "0..n" BuildFile: secondary_release_files
|
2023-05-05 09:57:36 +00:00
|
|
|
BuildFile *-- "1" Version
|
2023-03-14 14:07:47 +00:00
|
|
|
C4k *-- DnsRecord
|
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
|
|
|
|
|
|
|
```
|