Skip to content

Commit

Permalink
Merge pull request #1513 from input-output-hk/change_health_endpoint
Browse files Browse the repository at this point in the history
chore: update enpoint to ready
  • Loading branch information
bernokl authored Oct 15, 2024
2 parents 622d766 + 5e681db commit efba4ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions nix/cardano-services/deployments/backend.provider.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
};
Expand Down
3 changes: 2 additions & 1 deletion nix/cardano-services/deployments/chain-history.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@

livenessProbe = {
timeoutSeconds = 5;
periodSeconds = 10;
httpGet = {
path = "${values.cardano-services.httpPrefix}/health";
path = "${values.cardano-services.httpPrefix}/ready";
port = 3000;
};
};
Expand Down

0 comments on commit efba4ee

Please sign in to comment.