Skip to content

Commit 52c7afa

Browse files
committed
bump timeouts for liveness probe
1 parent 9fac2c9 commit 52c7afa

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

terraform/app.tf

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,14 @@ resource "azurerm_container_app" "main" {
182182
}
183183

184184
liveness_probe {
185-
host = "127.0.0.1"
186-
path = "/api/v1/health"
187-
port = 8000
188-
transport = "HTTP"
189-
initial_delay = 5
190-
interval_seconds = 15
185+
host = "127.0.0.1"
186+
path = "/api/v1/health"
187+
port = 8000
188+
transport = "HTTP"
189+
initial_delay = 5
190+
interval_seconds = 30
191+
failure_count_threshold = 5
192+
timeout = 3
191193
}
192194
}
193195

0 commit comments

Comments
 (0)