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

Fix Azure distribution detection

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-12-17 14:21:23 +02:00
parent ed036d1f99
commit 5a8b47476e

View File

@ -88,7 +88,7 @@ export class DistributionDetector extends BaseClusterDetector {
}
protected isAKS() {
return this.cluster.apiUrl.endsWith("azmk8s.io");
return this.cluster.apiUrl.includes("azmk8s.io");
}
protected isMirantis() {