feat: add TCP health check configuration for applications

This commit is contained in:
biersoeckli
2026-01-08 17:04:41 +00:00
parent 4e44574a62
commit ca4a25d35b
7 changed files with 238 additions and 160 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "App" ADD COLUMN "healthCheckTcpPort" INTEGER;

View File

@@ -212,6 +212,8 @@ model App {
healthCheckPeriodSeconds Int @default(10)
healthCheckTimeoutSeconds Int @default(5)
healthCheckTcpPort Int?
appDomains AppDomain[]
appPorts AppPort[]
appVolumes AppVolume[]