Hi everyone,
We have a nodejs app running (until a few days ago) on fly.io, It had crashed and when I want to redeploy it I have this massage
1 desired, 1 placed, 0 healthy, 1 unhealthy
→ v22 failed - Failed due to unhealthy allocations - not rolling back to stable job version 22 as current job has same specification and deploying as v23
This is our fly.toml
03T11:04:24-03:00
kill_signal = “SIGINT”
kill_timeout = 5
processes =
[deploy]
release_command = “npm run db:migrate”
[env]
PORT = “8080”
NODE_ENV = “production”
[experimental]
allowed_public_ports =
auto_rollback = true
[[services]]
http_checks =
internal_port = 8080
processes = [“app”]
protocol = “tcp”
script_checks =
[services.concurrency]
hard_limit = 25
soft_limit = 20
type = “connections”
[[services.ports]]
handlers = [“http”]
port = 80
[[services.ports]]
handlers = [“tls”, “http”]
port = 443
[[services.tcp_checks]]
grace_period = “5s”
interval = “15s”
restart_limit = 0
timeout = “5s”
¿Any suggestions?