website-and-documentation/resources/edp-likec4/models/context/application-deployment.c4
Stephan Lo 2c981d3ce3
All checks were successful
ci / build (push) Successful in 57s
refactor(architecture): Refactor text architecture to likec4
2025-12-23 13:38:07 +01:00

21 lines
647 B
Text

model {
runtimeCluster = system 'Kubernetes Cluster' {
description 'Target cluster where applications are deployed'
technology 'Kubernetes'
container runningApplication 'Running Application' {
description 'Deployed workload'
component pods 'Pods'
component services 'Services'
component ingress 'Ingress'
}
}
// Relationships matching the documentation flow
developer -> edp.forgejogit 'git push'
edp.forgejogit -> edp.forgejoActions 'triggers'
edp.forgejoActions -> edp.imageregistry 'push image'
edp.forgejogit -> edp.argoCD 'watches manifests'
edp.argoCD -> runtimeCluster 'deploys'
}