26 lines
378 B
TOML
26 lines
378 B
TOML
[app]
|
|
name = "test-app"
|
|
image = "git.nodeup.ru/stackops/test-app:latest"
|
|
replicas = 1
|
|
port = 8080
|
|
|
|
[migrations]
|
|
command = "test-app migrate"
|
|
|
|
[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"
|