-
Notifications
You must be signed in to change notification settings - Fork 49
kubelet dashboard: Remove the cluster label #474
Conversation
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.
Hm, I don't think we should be using the dashboard for Kubernetes 1.14
But then do we have an option until we update the chart to the latest version? |
c6e88a3
to
5b1126f
Compare
Hm, could we just update to the latest version with helm/charts#22338 included on top? As I guess this is the issue? Instead of this PR. |
I am not sure how that PR can be implemented. Because it is supposed to maintain two appVersions, not sure how that can be achieved. |
Maybe you can fallback to value different than appVersion if K8s version is lower than X? |
I don't have all the context but it seems helm/charts#22338 is closed so are you ok with having this as a stop-gap solution and consider updating to a newer chart once it's available upstream, @invidian? |
As far as I understand, we ship dashboards, which is suppose to be used with Kubernetes 1.14, when Lokomotive ships 1.18. There might be other things broken in those dashboards because of that, not only this. We might be also missing some interesting graphs etc. For me, maintaining/fixing the dashboards which shouldn't be used anyway and should be replaced makes a little sense, I would rather move forward and catch up with upstream. Also, as far as I see, upstream is not willing to do the upgrades, as the repository is deprecated. |
75952ce
to
d3ac234
Compare
Kubelet Dashboard was not showing any information because it was querying using the cluster label which was missing on the metrics. This commit removes the cluster label query. Signed-off-by: Suraj Deshmukh <suraj@kinvolk.io>
d3ac234
to
cf6cb24
Compare
I agree with the general idea. However, things are broken right now so I'd say:
|
It is a huge effort since upstream for the sake for backwards compatibility does not want to make much changes as mentioned in that closed PR. I suggest we move forward with this because things work fine for now. And we revisit things as they are broken. |
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.
🙈
Kubelet Dashboard was not showing any information because it was
querying using the cluster label which was missing on the metrics. This
commit removes the cluster label query.
Fixes #453