27 lines
1.1 KiB
Text
27 lines
1.1 KiB
Text
@startuml engineer-portal-structure
|
|
|
|
skinparam rectangle {
|
|
BackgroundColor<<Documentation>> Wheat
|
|
BackgroundColor<<Infrastructure>> LightBlue
|
|
BackgroundColor<<Applications>> LightGreen
|
|
BackgroundColor<<Tools>> LightGrey
|
|
BackgroundColor<<CICD>> LightCoral
|
|
}
|
|
skinparam roundcorner 20
|
|
skinparam shadowing false
|
|
|
|
rectangle "Engineer Portal Structure" as Structure {
|
|
rectangle "Documentation repositories" <<Documentation>> {
|
|
rectangle "docs-cloudstream-onboarding\n- Welcome\n- Getting Started\n- Documentation Guidelines\n- Code Review Process\n- FAQ" as Onboarding
|
|
rectangle "docs-agile-working\n- Communication\n- Documentation\n- The PI and sprints\n- Task management kanban setup" as AgileDocs
|
|
}
|
|
rectangle "Infrastructure repositories" <<Infrastructure>> {
|
|
rectangle "infra-terraform-modulelibrary\n- Azure Modules\n- IaC consumer examples" as Terraform
|
|
rectangle "infra-ansible-adoconfiguration\n- Config Management\n- Server Roles" as Ansible
|
|
}
|
|
rectangle "CI/CD repositories" <<CICD>> {
|
|
rectangle "cicd-pipeline-library\n- YAML Definitions\n- Build Configs" as CICD
|
|
}
|
|
}
|
|
|
|
@enduml
|