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

Detect Docker Desktop (#1623)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-12-02 19:13:57 +02:00 committed by GitHub
parent 13914a8bea
commit 87f1a39dca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,10 @@ export class DistributionDetector extends BaseClusterDetector {
return { value: "microk8s", accuracy: 80}; return { value: "microk8s", accuracy: 80};
} }
if (this.isDockerDesktop()) {
return { value: "docker-desktop", accuracy: 80};
}
if (this.isCustom()) { if (this.isCustom()) {
return { value: "custom", accuracy: 10}; return { value: "custom", accuracy: 10};
} }
@ -95,6 +99,10 @@ export class DistributionDetector extends BaseClusterDetector {
return this.cluster.contextName.startsWith("microk8s"); return this.cluster.contextName.startsWith("microk8s");
} }
protected isDockerDesktop() {
return this.cluster.contextName === "docker-desktop";
}
protected isCustom() { protected isCustom() {
return this.version.includes("+"); return this.version.includes("+");
} }