From 3ce68d39b15a91a8be24ff8c7bc4ab1e626a76b2 Mon Sep 17 00:00:00 2001 From: Alexander Timmermann <alexander.timmermann@holi.social> Date: Tue, 11 Mar 2025 10:30:52 +0100 Subject: [PATCH] feat(infra): add startup and liveness probes --- terraform/environments/backend.tf | 20 ++++++++++++++++++++ terraform/environments/federator.tf | 20 ++++++++++++++++++++ terraform/environments/frontend.tf | 20 ++++++++++++++++++++ 3 files changed, 60 insertions(+) diff --git a/terraform/environments/backend.tf b/terraform/environments/backend.tf index 73e37ab..f5e0419 100644 --- a/terraform/environments/backend.tf +++ b/terraform/environments/backend.tf @@ -148,6 +148,26 @@ resource "google_cloud_run_service" "moderation_backend" { memory = local.environment == "production" ? "512Mi" : "512Mi" } } + + startup_probe { + timeout_seconds = 5 + period_seconds = 5 + failure_threshold = 6 + + http_get { + path = "/health" + } + } + + liveness_probe { + timeout_seconds = 5 + period_seconds = 30 + failure_threshold = 5 + + http_get { + path = "/health" + } + } } container_concurrency = 80 diff --git a/terraform/environments/federator.tf b/terraform/environments/federator.tf index 13e5000..c3410b7 100644 --- a/terraform/environments/federator.tf +++ b/terraform/environments/federator.tf @@ -166,6 +166,26 @@ resource "google_cloud_run_service" "moderation_federator" { memory = local.environment == "production" ? "1Gi" : "1Gi" } } + + startup_probe { + period_seconds = 15 + timeout_seconds = 10 + failure_threshold = 6 + + http_get { + path = "/healthz" + } + } + + liveness_probe { + period_seconds = 30 + timeout_seconds = 5 + failure_threshold = 2 + + http_get { + path = "/healthz" + } + } } container_concurrency = 80 diff --git a/terraform/environments/frontend.tf b/terraform/environments/frontend.tf index 1a3e6d3..28f3d9a 100644 --- a/terraform/environments/frontend.tf +++ b/terraform/environments/frontend.tf @@ -32,6 +32,26 @@ resource "google_cloud_run_service" "frontend" { ports { container_port = 80 } + + startup_probe { + http_get { + path = "/" + } + + period_seconds = 5 + timeout_seconds = 5 + failure_threshold = 6 + } + + liveness_probe { + http_get { + path = "/" + } + + period_seconds = 30 + timeout_seconds = 30 + failure_threshold = 2 + } } container_concurrency = 80 -- GitLab