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

Node kernel version is not necessary

Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com>
This commit is contained in:
Piotr Roszatycki 2023-10-23 11:12:39 +02:00
parent 83b2ce6afc
commit 0a83a9687a
2 changed files with 1 additions and 10 deletions

View File

@ -99,7 +99,6 @@ export class NodeShellSession extends ShellSession {
const nodeOs = node.getOperatingSystem(); const nodeOs = node.getOperatingSystem();
const nodeOsImage = node.getOperatingSystemImage(); const nodeOsImage = node.getOperatingSystemImage();
const nodeKernelVersion = node.getKernelVersion();
let image: string; let image: string;
let command: string[]; let command: string[];
@ -125,11 +124,7 @@ export class NodeShellSession extends ShellSession {
}; };
break; break;
case "windows": case "windows":
if (nodeKernelVersion) { image = nodeShellImage || initialNodeShellWindowsImage;
image = nodeShellImage || initialNodeShellWindowsImage;
} else {
throw new Error(`No status with kernel version for node ${this.nodeName} found`);
}
command = ["cmd.exe"]; command = ["cmd.exe"];
args = ["/c", "%CONTAINER_SANDBOX_MOUNT_POINT%\\Program Files\\PowerShell\\latest\\pwsh.exe", "-nol", "-wd", "C:\\"]; args = ["/c", "%CONTAINER_SANDBOX_MOUNT_POINT%\\Program Files\\PowerShell\\latest\\pwsh.exe", "-nol", "-wd", "C:\\"];
securityContext = { securityContext = {

View File

@ -251,10 +251,6 @@ export class Node extends KubeObject<ClusterScopedMetadata, NodeStatus, NodeSpec
return this.status?.nodeInfo?.osImage; return this.status?.nodeInfo?.osImage;
} }
getKernelVersion(): string | undefined {
return this.status?.nodeInfo?.kernelVersion;
}
isUnschedulable() { isUnschedulable() {
return this.spec.unschedulable; return this.spec.unschedulable;
} }