fix: modified container healthcheck to support custom port via -port/--port flag#3789
Merged
iwankgb merged 8 commits intogoogle:masterfrom Jan 8, 2026
Merged
Conversation
Introduce entrypoint.sh to maintain the existing -logtostderr behavior while allowing for future healthcheck enhancements.
The Dockerfile healthcheck was using a static port (8080) which caused healthcheck failures when cAdvisor was started with a custom port using the -port flag. This change introduces a healthcheck script that: - Reads the cadvisor process command line from /proc - Dynamically extracts the port from the -port flag - Allows the healthcheck to use the correct port automatically - Preserves the existing -logtostderr behavior Fixes google#3618
Documents the default port and enables automatic port mapping. Users can override with -port flag and custom -p mapping.
Contributor
Author
|
Added the required boilerplate to the shell scripts |
Contributor
Author
|
Hey, could a maintainer help me understand if any changes are required here? |
Collaborator
|
Closing just to reopen (I hope to have security scan run successfully). |
iwankgb
approved these changes
Jan 8, 2026
Contributor
Author
|
Thanks @iwankgb. The CADVISOR_HEALTHCHECK_URL envVar should be obsolete with the next release |
|
can something be done, like this, to also support |
But now when @lev-blit |
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.
Problem Statement
The Dockerfile currently has a static healthcheck URL (http://localhost:8080/healthz) that doesn't adapt when users specify a different port using the -port flag. This causes healthchecks to fail when running cAdvisor on non-default ports.
Related Issues
Fixes #3618
Root Cause
Environment variables set in the entrypoint script don't persist for HEALTHCHECK commands because they run in separate process contexts. Docker doesn't share the entrypoint's environment with the healthcheck process.
Proposed Solution
Implemented a dedicated healthcheck script that:
/proc/1/cmdline-portflag to extract the actual portThis approach works because Docker healthchecks run inside the container and can access the process information.
Breaking Changes
None - fully backward compatible
Test Case 1: Default Port (8080)
Test Case 2: Custom Port (9090)
Test Case 3: Verify Healthcheck Logic
Note:
Individual CLA submitted