1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix metrics configuration via catalog (#4252)

This commit is contained in:
Jan Jansen 2021-11-04 14:33:52 +01:00 committed by GitHub
parent a93108c103
commit 0e1df10488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,6 +192,11 @@ export class ClusterManager extends Singleton {
cluster.accessibleNamespaces = entity.spec.accessibleNamespaces;
}
if (entity.spec.metrics.source !== "local") {
cluster.preferences.prometheusProvider ||= { type: entity.spec.metrics?.prometheus?.type ?? "" };
cluster.preferences.prometheus = entity.spec.metrics.prometheus.address;
}
this.updateEntityFromCluster(cluster);
}
}