feat(probes): add health probes to all data plane components#226
Merged
fernando-villalba merged 1 commit intomainfrom Feb 12, 2026
Merged
feat(probes): add health probes to all data plane components#226fernando-villalba merged 1 commit intomainfrom
fernando-villalba merged 1 commit intomainfrom
Conversation
Components (multigateway, multipooler, multiorch) had no liveness or readiness probes, causing Kubernetes to treat them as always healthy even when dependencies like the topo initialization wasn't done. - Add HTTP liveness (/live) and readiness (/ready) probes to multigateway in multigateway.go on port 15100 - Add HTTP probes to multipooler in containers.go on port 15200 - Add HTTP probes to multiorch in containers.go on port 15300 - Set InitialDelaySeconds to 60 for both probe types to allow time for topo server and other dependencies to become available - Add IgnoreProbeDefaults() helper to compare.go for ignoring API server-applied probe defaults (Scheme, TimeoutSeconds, etc.) - Update all unit and integration test expectations to include the new probe configurations Prevents premature container restarts and provides accurate readiness signaling during cluster bootstrap.
🔬 Go Test Coverage ReportSummary
StatusDetailShow New Coverage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Components (multigateway, multipooler, multiorch) had no liveness or readiness probes, causing Kubernetes to treat them as always healthy even when dependencies like the topo initialization wasn't done.
Prevents premature container restarts and provides accurate readiness signaling during cluster bootstrap.