30 lines
No EOL
797 B
Text
30 lines
No EOL
797 B
Text
model {
|
|
developer = actor 'Developer' {
|
|
description 'The regular user of the platform'
|
|
-> localbox 'inner loop development'
|
|
-> edp 'outer loop development'
|
|
-> edp.ui 'manages project'
|
|
-> edp.forgejo 'manages code'
|
|
-> edp.keycloak 'authenticates'
|
|
-> edp.argoCD 'manages deployments'
|
|
}
|
|
platformdeveloper = actor 'Platform Developer' {
|
|
description 'The EDP engineer'
|
|
style {
|
|
color gray
|
|
shape person
|
|
}
|
|
}
|
|
otherProductLifecycleRoles = actor 'Reviewer, Tester, Auditors, Operators' {
|
|
description 'The EDP engineer'
|
|
-> edp 'act according to responibility'
|
|
}
|
|
customers = actor 'End Customers' {
|
|
description 'Consumers of your Application'
|
|
style {
|
|
color amber
|
|
shape person
|
|
}
|
|
-> cloud 'uses your app'
|
|
}
|
|
} |