From a89eb486d8765245d178a2ae1036b379a0862575 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 17 Nov 2022 06:56:10 -0800 Subject: [PATCH] Fix not being able to install Lens metrics (#6597) Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- src/main/resource-applier/resource-applier.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resource-applier/resource-applier.ts b/src/main/resource-applier/resource-applier.ts index 78d13874b8..95e893a0a9 100644 --- a/src/main/resource-applier/resource-applier.ts +++ b/src/main/resource-applier/resource-applier.ts @@ -129,9 +129,9 @@ export class ResourceApplier { const args = [ subCmd, - "--kubeconfig", `"${proxyKubeconfigPath}"`, + "--kubeconfig", proxyKubeconfigPath, ...parentArgs, - "-f", `"${tmpDir}"`, + "-f", tmpDir, ]; this.dependencies.logger.info(`[RESOURCE-APPLIER] running kubectl`, { args });