-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[1.11] Remove "container PID" logs from conmon #1694
Merged
Merged
Conversation
This file contains 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
k8s-ci-robot
added
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
cncf-cla: yes
labels
Jul 11, 2018
/test all |
k8s-ci-robot
added
size/M
Denotes a PR that changes 30-99 lines, ignoring generated files.
size/L
Denotes a PR that changes 100-499 lines, ignoring generated files.
and removed
size/XS
Denotes a PR that changes 0-9 lines, ignoring generated files.
size/M
Denotes a PR that changes 30-99 lines, ignoring generated files.
labels
Jul 11, 2018
k8s-ci-robot
added
size/M
Denotes a PR that changes 30-99 lines, ignoring generated files.
and removed
size/L
Denotes a PR that changes 100-499 lines, ignoring generated files.
labels
Jul 11, 2018
Fix the problems Travis is complaining about and squash your PR and this LGTM. |
umohnani8
force-pushed
the
1.11
branch
2 times, most recently
from
July 12, 2018 15:42
89abc3d
to
5ac2cda
Compare
k8s-ci-robot
added
size/S
Denotes a PR that changes 10-29 lines, ignoring generated files.
and removed
size/M
Denotes a PR that changes 30-99 lines, ignoring generated files.
labels
Jul 12, 2018
LGTM once the tests are fixed up. |
conmon now has a --log-level flag that changes the verbosity of the logs based on the value it is set to. From logrus, panic(0), fatal(1), error(2) tells conmon to print all pexit and nexit logs (this is the default). warn(3) adds the nwarn logs, info(4) adds the ninfo logs, and finally debug(5) adds the ndebug logs as well. Adds a log_level field in the crio.conf that can have the following options: panic, fatal, error, warn, info, and debug. Changes default from info to error. Signed-off-by: umohnani8 <[email protected]>
k8s-ci-robot
added
size/L
Denotes a PR that changes 100-499 lines, ignoring generated files.
and removed
size/S
Denotes a PR that changes 10-29 lines, ignoring generated files.
labels
Jul 30, 2018
/test all |
/test e2e_rhel |
1 similar comment
/test e2e_rhel |
mrunalp
approved these changes
Aug 1, 2018
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.
LGTM
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.
Logs were filling up quite a bit due to the logs
in conmon printing out the container PID info.
Signed-off-by: umohnani8 [email protected]