diff --git a/nix/cardano-services/deployments/backend.provider.nix b/nix/cardano-services/deployments/backend.provider.nix index dccbf125e59..8da7d45c1c0 100644 --- a/nix/cardano-services/deployments/backend.provider.nix +++ b/nix/cardano-services/deployments/backend.provider.nix @@ -11,10 +11,10 @@ metricsPath = "${values.cardano-services.httpPrefix}/metrics"; livenessProbe = { - timeoutSeconds = 30; - periodSeconds = 60; + timeoutSeconds = 5; + periodSeconds = 10; httpGet = { - path = "${values.cardano-services.httpPrefix}/health"; + path = "${values.cardano-services.httpPrefix}/ready"; port = 3000; }; }; diff --git a/nix/cardano-services/deployments/chain-history.nix b/nix/cardano-services/deployments/chain-history.nix index 86443f487c7..2b54c1fd12c 100644 --- a/nix/cardano-services/deployments/chain-history.nix +++ b/nix/cardano-services/deployments/chain-history.nix @@ -13,8 +13,9 @@ livenessProbe = { timeoutSeconds = 5; + periodSeconds = 10; httpGet = { - path = "${values.cardano-services.httpPrefix}/health"; + path = "${values.cardano-services.httpPrefix}/ready"; port = 3000; }; };