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

Fix getKubeConfigLocal() (#635)

This commit is contained in:
Lauri Nevala 2020-08-04 10:24:11 +03:00 committed by GitHub
parent 756fc7b2b7
commit 0095c779b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,7 +160,7 @@ export async function getKubeConfigLocal(): Promise<string> {
const file = await readFile(configFile, "utf8");
const obj = yaml.safeLoad(file);
if (obj.contexts) {
obj.contexts = obj.context.filter((ctx: any) => ctx?.context?.cluster && ctx?.name)
obj.contexts = obj.contexts.filter((ctx: any) => ctx?.context?.cluster && ctx?.name)
}
return yaml.safeDump(obj);
} catch (err) {