Skip to content

Commit 62e5f41

Browse files
committed
chore: move health probe to ready
1 parent b760734 commit 62e5f41

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

nix/cardano-services/deployments/backend.provider.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
metricsPath = "${values.cardano-services.httpPrefix}/metrics";
1212

1313
livenessProbe = {
14-
timeoutSeconds = 30;
14+
timeoutSeconds = 10;
1515
periodSeconds = 60;
1616
httpGet = {
17-
path = "${values.cardano-services.httpPrefix}/health";
17+
path = "${values.cardano-services.httpPrefix}/ready";
1818
port = 3000;
1919
};
2020
};

nix/cardano-services/deployments/chain-history.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
livenessProbe = {
1515
timeoutSeconds = 5;
1616
httpGet = {
17-
path = "${values.cardano-services.httpPrefix}/health";
17+
path = "${values.cardano-services.httpPrefix}/ready";
1818
port = 3000;
1919
};
2020
};

nix/cardano-services/deployments/pg-boss-worker-deployment.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
};
3131
livenessProbe = {
3232
httpGet = {
33-
path = "${values.cardano-services.httpPrefix}/health";
33+
path = "${values.cardano-services.httpPrefix}/ready";
3434
port = 3000;
3535
};
3636
};

0 commit comments

Comments
 (0)