fix(c4-devdays): removed typos
This commit is contained in:
parent
1c3d72ebb6
commit
d3e51c3777
4 changed files with 46 additions and 4 deletions
|
@ -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' {
|
||||
|
|
|
@ -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'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
41
likec4/views/developer-landscape-with-foundry.c4
Normal file
41
likec4/views/developer-landscape-with-foundry.c4
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue