mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix escaping and add comment
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
1c058980f6
commit
68d4502374
@ -21,7 +21,6 @@
|
||||
|
||||
import React from "react";
|
||||
import { Common, Renderer } from "@k8slens/extensions";
|
||||
import { inspect } from "util";
|
||||
|
||||
type Node = Renderer.K8sApi.Node;
|
||||
|
||||
@ -48,7 +47,7 @@ export function NodeMenu(props: NodeMenuProps) {
|
||||
|
||||
if (!node) return null;
|
||||
const nodeName = node.getName();
|
||||
const kubectlPath = inspect(UserPreferences.getKubectlPath(), false, null, false);
|
||||
const kubectlPath = JSON.stringify(UserPreferences.getKubectlPath()); // this call escapes spaces and quotes
|
||||
|
||||
const sendToTerminal = (command: string) => {
|
||||
terminalStore.sendCommand(command, {
|
||||
|
||||
@ -23,7 +23,6 @@
|
||||
|
||||
import React from "react";
|
||||
import { Renderer, Common } from "@k8slens/extensions";
|
||||
import { inspect } from "util";
|
||||
|
||||
type Pod = Renderer.K8sApi.Pod;
|
||||
|
||||
@ -51,7 +50,7 @@ export class PodAttachMenu extends React.Component<PodAttachMenuProps> {
|
||||
const { object: pod } = this.props;
|
||||
|
||||
const commandParts = [
|
||||
inspect(UserPreferences.getKubectlPath(), false, null, false),
|
||||
JSON.stringify(UserPreferences.getKubectlPath()), // this call escapes spaces and quotes
|
||||
"attach",
|
||||
"-i",
|
||||
"-t",
|
||||
|
||||
@ -23,7 +23,6 @@
|
||||
|
||||
import React from "react";
|
||||
import { Renderer, Common } from "@k8slens/extensions";
|
||||
import { inspect } from "util";
|
||||
|
||||
type Pod = Renderer.K8sApi.Pod;
|
||||
|
||||
@ -51,7 +50,7 @@ export class PodShellMenu extends React.Component<PodShellMenuProps> {
|
||||
const { object: pod } = this.props;
|
||||
|
||||
const commandParts = [
|
||||
inspect(UserPreferences.getKubectlPath(), false, null, false),
|
||||
JSON.stringify(UserPreferences.getKubectlPath()), // this call escapes spaces and quotes
|
||||
"exec",
|
||||
"-i",
|
||||
"-t",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user