Add support for logging binary#896
Merged
anmaxvl merged 1 commit intomicrosoft:masterfrom Jan 7, 2021
Merged
Conversation
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
dcantah
reviewed
Nov 18, 2020
Contributor
|
This is still a draft but a quick summary of the entire flow for this work/anything extra that you think would be helpful to know for review of this would be good to have 😃 |
ee53852 to
eeff4aa
Compare
Contributor
|
@anmaxvl Thanks for the summary :) By the way, does this need to be a draft? Is there more coming and this is just to get feedback early or? |
dcantah
reviewed
Nov 19, 2020
dcantah
reviewed
Nov 19, 2020
dcantah
reviewed
Nov 19, 2020
eeff4aa to
0a3af6f
Compare
Contributor
Author
for early feedback and thanks for giving one! still need to validate the |
kevpar
reviewed
Nov 19, 2020
dcantah
reviewed
Nov 19, 2020
d7ddf5f to
9e2a1e2
Compare
anmaxvl
commented
Dec 7, 2020
anmaxvl
commented
Dec 7, 2020
ab2654a to
198776f
Compare
|
LOVE the tests. Just a few really minor questions/comments :) |
a26974b to
5f5dc90
Compare
katiewasnothere
approved these changes
Dec 22, 2020
katiewasnothere
left a comment
There was a problem hiding this comment.
Couple of comments but overall LGTM :)
5f5dc90 to
ae06a62
Compare
Add integrations tests Signed-off-by: Maksim An <[email protected]>
ae06a62 to
966a054
Compare
anmaxvl
pushed a commit
to anmaxvl/hcsshim
that referenced
this pull request
Aug 19, 2021
Related work items: microsoft#173, microsoft#839, microsoft#856, microsoft#877, microsoft#881, microsoft#886, microsoft#887, microsoft#888, microsoft#889, microsoft#890, microsoft#893, microsoft#894, microsoft#896, microsoft#899, microsoft#900, microsoft#902, microsoft#904, microsoft#905, microsoft#906, microsoft#907, microsoft#908, microsoft#910, microsoft#912, microsoft#913, microsoft#914, microsoft#916, microsoft#918, microsoft#923, microsoft#925, microsoft#926, microsoft#928, microsoft#929, microsoft#932, microsoft#933, microsoft#934, microsoft#938, microsoft#939, microsoft#942, microsoft#943, microsoft#945, microsoft#946, microsoft#947, microsoft#949, microsoft#951, microsoft#952, microsoft#954
princepereira
pushed a commit
to princepereira/hcsshim
that referenced
this pull request
Aug 29, 2024
Logging binary support and integration tests Signed-off-by: Maksim An <[email protected]>
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.
Summary
This PR adds logging binary support (like in containerd/containerd#3085).
Just like in the above PR:
Flow
The flow (assuming that jterry75/cri#82 is also merged) as follows:
log_pathconfig:log_pathneeds to be a valid url (i.e."binary:\\\\\\path\\to\\binary.exe"won't work, sinceurl.Parsewill fail)You'll notice that
ctr-x-stdoutandctr-x-stderrpipes won't be created,binary-x-stdoutandbinary-x-stderrwill replace them.This will break the previous "feature" of being able to set
log_pathand docrictl attachat the same time.TODO
waitchannel is necessary, since earlier testing was failing to run the binarySigned-off-by: Maksim An [email protected]