Skip to content

Commit

Permalink
[PLAT-15196] kubernetes universe health check does not require clock …
Browse files Browse the repository at this point in the history
…sync

Summary:
Kubernetes universes will not have a clock sync service installed in the containers, we should not
check for it in node_health.py

Test Plan: validated health check does not fail on k8s universes

Reviewers: muthu

Reviewed By: muthu

Subscribers: yugaware

Differential Revision: https://phorge.dev.yugabyte.com/D38241
  • Loading branch information
shubin-yb committed Sep 24, 2024
1 parent e221e66 commit 48be5e9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,8 @@ public void checkSingleUniverse(CheckSingleUniverseParams params) {
confGetter.getConfForScope(
params.universe, UniverseConfKeys.healthCheckClockSyncServiceRequired));
}
} else {
nodeInfo.setClockSyncServiceRequired(false);
}
if (params.universe.isYbcEnabled()) {
nodeInfo
Expand Down

0 comments on commit 48be5e9

Please sign in to comment.