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

Detect rancher distros (#1617)

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-12-02 16:27:00 +02:00 committed by GitHub
parent 6d5e18ea7d
commit 2062b376a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,12 @@ export class DistributionDetector extends BaseClusterDetector {
public async detect() { public async detect() {
this.version = await this.getKubernetesVersion(); this.version = await this.getKubernetesVersion();
if (await this.isRancher()) { if (this.isRke()) {
return { value: "rancher", accuracy: 80}; return { value: "rke", accuracy: 80};
}
if (this.isK3s()) {
return { value: "k3s", accuracy: 80};
} }
if (this.isGKE()) { if (this.isGKE()) {
@ -87,13 +91,11 @@ export class DistributionDetector extends BaseClusterDetector {
return this.version.includes("+"); return this.version.includes("+");
} }
protected async isRancher() { protected isRke() {
try { return this.version.includes("-rancher");
const response = await this.k8sRequest("");
return response.data.find((api: any) => api?.apiVersion?.group === "meta.cattle.io") !== undefined;
} catch (e) {
return false;
} }
protected isK3s() {
return this.version.includes("+k3s");
} }
} }