diff --git a/spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy/deployment.ex b/spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy/deployment.ex index a85e8bc3..c775c2cf 100644 --- a/spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy/deployment.ex +++ b/spawn_operator/spawn_operator/lib/spawn_operator/k8s/proxy/deployment.ex @@ -252,14 +252,14 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do "env" => @default_actor_host_function_env, "ports" => proxy_actor_host_function_ports, "livenessProbe" => %{ - "failureThreshold" => 10, "httpGet" => %{ "path" => "/health/liveness", "port" => proxy_http_port, "scheme" => "HTTP" }, - "initialDelaySeconds" => 5, - "periodSeconds" => 60, + "failureThreshold" => 3, + "initialDelaySeconds" => 10, + "periodSeconds" => 10, "successThreshold" => 1, "timeoutSeconds" => 30 }, @@ -269,6 +269,7 @@ defmodule SpawnOperator.K8s.Proxy.Deployment do "port" => proxy_http_port, "scheme" => "HTTP" }, + "failureThreshold" => 1, "initialDelaySeconds" => 5, "periodSeconds" => 5, "successThreshold" => 1,