kubernetes-app
kubernetes-app copied to clipboard
Broken icon for grafana-kubernetes datasource
Grafana 5.1.3.
When going /datasources
page, the icon for the datasource http://HOSTNAME/public/plugins/grafana-kubernetes-datasource/img/logo.svg
always 404.
Grafana is running as a pod within K8s.
The logo is present in the repo, but the app seems to point at a wrong path.
Same here.
fixed by cp -r src/datasource/img/ dist/datasource/
same here. Logo path should be with grafana-kubernetes-app/
instead of grafana-kubernetes-datasource/
. Should be an easy fix right?? Why is this still open...
Fixed by:
cp src/datasource/img/logo.svg dist/datasource/
as in @gudzenkov comment.
But as the image link got an extra "/img" path, I've had to do also:
mkdir img; mv logo.svg img/
while in the /var/lib/grafana/plugins/grafana-kubernetes-app-31da38a
folder.