You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps did you take and what happened: sonobuoy status --json | jq
Should have a list of the plugins and their aggregate data. However, you can see in the output below that it duplicated the plugin and only put the data really into one of them.
It also didnt list the daemonset-master info (which didnt really run since none of the nodes were schedulable but I would think should be in that list).
FWIW the plugin daemonset-worker was targeting nodes without the master label on them; daemonset-master the opposite.
Sonobuoy v0.16.4
The text was updated successfully, but these errors were encountered:
I just realized that the issue is that the node is being set whereas the plugin itself isn't node specific. So I guess the plugin-node logic is adding 2 values (with no result-counts) and then the postprocessing logic is probably just finding one and adding the count data. Something along those lines.
Will have to check what the original intent was here; I'm not certain whether or not the intent was to have the values in that list being dependent on the node at all. I thought it was a rollup of that plugin across the cluster. TBD
The bug would cause only one of the plugin/node values in the
`sonobuoy status --json` output to be updated and it would include
all the results for all nodes.
Instead, we want each plugin/node value in that list to report its
own values for passed/failed.
Fixes#1001
Signed-off-by: John Schnake <jschnake@vmware.com>
What steps did you take and what happened:
sonobuoy status --json | jq
Should have a list of the plugins and their aggregate data. However, you can see in the output below that it duplicated the plugin and only put the data really into one of them.
It also didnt list the
daemonset-master
info (which didnt really run since none of the nodes were schedulable but I would think should be in that list).FWIW the plugin
daemonset-worker
was targeting nodes without the master label on them;daemonset-master
the opposite.Sonobuoy v0.16.4
The text was updated successfully, but these errors were encountered: