api-gateway with depends_on users-api

This commit is contained in:
stackops
2026-04-09 16:53:42 +03:00
commit eae5f6165d
4 changed files with 127 additions and 0 deletions

17
stackfile.toml Normal file
View File

@@ -0,0 +1,17 @@
[app]
name = "api-gateway"
image = "git.nodeup.ru/stackops/api-gateway:latest"
replicas = 1
port = 8080
[depends_on.services]
users-api = 8080
[ingress]
host = "gateway.app.nodeup.ru"
path = "/"
tls = true
[health]
liveness = "/healthz"
readiness = "/healthz"