fix(c4-devdays): removed typos

This commit is contained in:
Stephan Lo 2025-04-07 15:16:55 +02:00 committed by Stephan Lo
parent 1c3d72ebb6
commit d3e51c3777
4 changed files with 46 additions and 4 deletions

View file

@ -16,7 +16,7 @@ model {
}
}
otherProductLifecycleRoles = actor 'Reviewer, Tester, Auditors, Operators' {
description 'The EDP engineer'
description 'Coworking roles in the outer loop'
-> edp 'act according to responibility'
}
customers = actor 'End Customers' {

View file

@ -1,6 +1,6 @@
model {
enterprise = system 'Customers Enterprise Systems' {
description 'The customers enterprise systems'
-> cloud 'probably some app specific dependencies'
enterprise = system "Customers' Enterprise Systems" {
description "The customers' enterprise systems"
-> cloud 'app specific dependencies'
}
}

View file

@ -2,6 +2,7 @@ model {
edp = system 'EDP' {
description 'EDP Edge Development Platform'
technology 'Kubernetes'
icon tech:kubernetes
-> enterprise 'integrates'
-> cloud 'deploys and observes'
-> localbox // inner-outer loop synchronization

View file

@ -0,0 +1,41 @@
global {
style text_large * {
size xlarge
}
}
views {
view developer-landscape-with-foundry {
title 'Developer Landscape View (with Foundry)'
autoLayout LeftRight 100 100
global style text_large
include *
exclude developer, localbox, edp, otherProductLifecycleRoles
exclude element.kind = workflow
group 'developer-scope' {
color green
opacity 20%
border none
include developer
include otherProductLifecycleRoles
group 'Devops inner-loop' {
color gray
opacity 30%
border none
include localbox
}
group 'Devops outer-loop' {
color gray
opacity 30%
border none
include edp
}
}
}
}