test app with postgres and redis healthchecks

This commit is contained in:
stackops
2026-04-09 14:05:23 +03:00
commit db74b13ce2
6 changed files with 213 additions and 0 deletions

22
stackfile.toml Normal file
View File

@@ -0,0 +1,22 @@
[app]
name = "test-app"
image = "git.nodeup.ru/stackops/test-app:latest"
replicas = 1
port = 8080
[ingress]
host = "test.app.nodeup.ru"
path = "/"
tls = true
[health]
liveness = "/healthz"
readiness = "/healthz"
[dependencies.postgres]
version = "15"
storage = "1Gi"
[dependencies.redis]
version = "7"
storage = "1Gi"