feat(otc): Added OTC overview and intro to deployments
Some checks failed
build / build (push) Failing after 55s
ci / build (push) Successful in 56s

This commit is contained in:
Patrick Sy 2025-12-18 14:24:56 +01:00
parent 48a9eed862
commit ad0052c0a7
Signed by: Patrick.Sy
GPG key ID: DDDC8EC51823195E
7 changed files with 325 additions and 58 deletions

View file

@ -0,0 +1,57 @@
deployment {
environment otcTenantProd 'Prod - builth.ing' {
cluster otcTenantEdpBuildthing 'edp.builth.ing' {
icon tech:git
description 'Primary Instance'
}
cluster otcTenantObservability 'observability.builth.ing' {
icon tech:git
description 'Observability Instance'
}
cluster otcTenantCustomerA 'customer-a.builth.ing' {
icon tech:git
description 'Customer Instance'
}
}
environment otcTenantNonProd 'Non-Prod - t09.de' {
cluster otcTenantDev1 'dev1.t09.de' {
icon tech:git
description 'Development Instance'
}
cluster otcTenantTestX 'test-x.t09.de' {
icon tech:git
description 'Testing Instance'
}
}
otcTenantEdpBuildthing -> otcTenantObservability 'deploys'
otcTenantEdpBuildthing -> otcTenantCustomerA 'deploys'
otcTenantEdpBuildthing -> otcTenantDev1 'deploys'
otcTenantEdpBuildthing -> otcTenantTestX 'deploys'
}
views {
deployment view otcTenants {
title 'OTC tenants'
include
otcTenantProd,
otcTenantNonProd,
otcTenantEdpBuildthing,
otcTenantObservability,
otcTenantCustomerA,
otcTenantDev1,
otcTenantTestX,
}
}