-
Couldn't load subscription status.
- Fork 712
Harden Docker container runtime health check #10402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -131,43 +131,85 @@ public async Task BuildImageAsync(string contextPath, string dockerfilePath, str | |||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| public Task<bool> CheckIfRunningAsync(CancellationToken cancellationToken) | ||||||||||||||||||||||||||
| public async Task<bool> CheckIfRunningAsync(CancellationToken cancellationToken) | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| var spec = new ProcessSpec("docker") | ||||||||||||||||||||||||||
| // First check if Docker daemon is running using the same check that DCP uses | ||||||||||||||||||||||||||
| if (!await CheckDockerDaemonAsync(cancellationToken).ConfigureAwait(false)) | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| Arguments = "buildx version", | ||||||||||||||||||||||||||
| return false; | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| // Then check if Docker buildx is available | ||||||||||||||||||||||||||
| return await CheckDockerBuildxAsync(cancellationToken).ConfigureAwait(false); | ||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| private async Task<bool> CheckDockerDaemonAsync(CancellationToken cancellationToken) | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| var dockerRunningSpec = new ProcessSpec("docker") | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| Arguments = "container ls -n 1", | ||||||||||||||||||||||||||
| OnOutputData = output => | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| logger.LogInformation("docker buildx version (stdout): {Output}", output); | ||||||||||||||||||||||||||
| logger.LogInformation("docker container ls (stdout): {Output}", output); | ||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||
| OnErrorData = error => | ||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||
| logger.LogInformation("docker buildx version (stderr): {Error}", error); | ||||||||||||||||||||||||||
| logger.LogInformation("docker container ls (stderr): {Error}", error); | ||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||
|
Comment on lines
151
to
158
|
||||||||||||||||||||||||||
| OnOutputData = output => | |
| { | |
| logger.LogInformation("docker buildx version (stdout): {Output}", output); | |
| logger.LogInformation("docker container ls (stdout): {Output}", output); | |
| }, | |
| OnErrorData = error => | |
| { | |
| logger.LogInformation("docker buildx version (stderr): {Error}", error); | |
| logger.LogInformation("docker container ls (stderr): {Error}", error); | |
| }, | |
| OnOutputData = output => LogProcessOutput("stdout", output), | |
| OnErrorData = error => LogProcessOutput("stderr", error), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider using LogWarning or LogError for stderr output to better reflect that this data represents an error stream rather than informational messages.