From f75a407559bd6cf35ac75a5e70b1bc9538707904 Mon Sep 17 00:00:00 2001 From: ITQ Date: Sat, 5 Sep 2026 19:14:47 +0300 Subject: [PATCH] fix(): fixed healthcheck intervals --- terraform/main/instance_group.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/terraform/main/instance_group.tf b/terraform/main/instance_group.tf index d381a1f..068e9e1 100644 --- a/terraform/main/instance_group.tf +++ b/terraform/main/instance_group.tf @@ -105,10 +105,10 @@ resource "yandex_compute_instance_group" "k8s_master" { ignore_health_checks = true } health_check { - healthy_threshold = 2 - unhealthy_threshold = 2 - interval = 2 - timeout = 1 + healthy_threshold = 3 + unhealthy_threshold = 3 + interval = 10 + timeout = 9 tcp_options { port = 6443 @@ -230,10 +230,10 @@ resource "yandex_compute_instance_group" "k8s_worker" { ignore_health_checks = true } health_check { - healthy_threshold = 2 - unhealthy_threshold = 2 - interval = 2 - timeout = 1 + healthy_threshold = 3 + unhealthy_threshold = 3 + interval = 10 + timeout = 9 tcp_options { port = 80