-
Notifications
You must be signed in to change notification settings - Fork 200
[RFE] Collect additional information about all pods in the cluster #339
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
Comments
A good way to do this would be to parse Not sure if |
Something like the following (need to be tested to check if it is valid):
an example:
Or if we want the same output by node name, something like the following:
|
You would like to have the namespace in that output. It is perfectly possible to have more than one pod with the same name, specially if they come from statefulsets or are created by some custom controller (or by hand) |
For the rest, it looks fine. |
I'd also suggest using |
I updated the query to display also the
an example:
|
This is intentional, we are only focusing on control-plane related data which is required to diagnose the cluster state and help our customers resolve the problem. Also, collecting any kind of data spanning all namespaces would risk exposing various Personal Identifiable Information which we would be required to remove from the collected data set, which isn't a trivial task to undertake.
That is valid use-case, but with the current capabilities OpenShift has, that kind of information would be much better suited to be expose in OpenShift Insights, based on cluster metrics and suggest any actions a user might take to help them improve the stability and availability of their cluster. Based on the above, as well as other information presented in this issue, I'm closing this as won't fix. /close |
@soltysh: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Collect similar information than the information shown by
oc describe nodes
, like CPU/memory limits and requests per pod, allocated resources in the nodes, real resource usage by pods (maybe also by containers) in must-gather.Currently, information like the following is shown in an
oc describe nodes
output:But in a must-gather, not all namespaces/pods are collected.
That information could help to identify overcommitted nodes, pods without requests/limits, etc.
The text was updated successfully, but these errors were encountered: