workspace extends ../../common/model/styles.dsl { name "Fixture management" description "Fixture management C4 model" !identifiers hierarchical model { developer = person "Developer" "Tango dev" "Person" tangoSystem = softwareSystem "TangoSystem" "Tango services" { application = container "Application" } fixtureManagementSystem = softwareSystem "FixtureManagementSystem" "Fixture Management System" { fixtureStorage = container "FixtureStorage" { tags "Redis" technology "Redis" } fixtureManager = container "FixtureManager" { tags "Manager" technology "Java" -> tangoSystem.application "Init fixtures" "HTTP" -> fixtureStorage "Read/write fixtures" "Redis client" } } stagingManagementSystem = softwareSystem "StagingManagementSystem" "Staging management system" { pipeline = container "CI/CD pipeline" { tags "CI/CD" technology "Gitlab" developer -> this "Deploy staging" "Kubernetes" -> fixtureManagementSystem.fixtureManager "Deploy service" "Kubernetes" -> tangoSystem.application "Deploy services" "Kubernetes" } stagingBot = container "Staging bot" { tags "Bot" technology "Slack bot" developer -> this "Init fixtures" "HTTP" -> fixtureManagementSystem.fixtureManager "Fixture readiness" "HTTP" } } } views { systemLandscape "SystemLandscape" "Fixture management" { include * autoLayout lr } systemcontext fixtureManagementSystem "fixtureManagementSystemContext" { include * autoLayout lr } container fixtureManagementSystem "fixtureManagementSystemContainers" { include * autoLayout lr } dynamic fixtureManagementSystem "init-staging" { developer -> stagingManagementSystem.pipeline { { stagingManagementSystem.pipeline -> fixtureManagementSystem.fixtureManager } { stagingManagementSystem.pipeline -> tangoSystem.application } } fixtureManagementSystem.fixtureManager -> tangoSystem.application fixtureManagementSystem.fixtureManager -> fixtureManagementSystem.fixtureStorage stagingManagementSystem.stagingBot -> fixtureManagementSystem.fixtureManager autoLayout lr description "Init staging fixtures flow" } } }