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

Show all helm release statuses. Fix lensapp#4586

Signed-off-by: zifter <zifter.ai@gmail.com>
This commit is contained in:
zifter 2021-12-22 12:12:05 +03:00
parent f8fa33ec8c
commit 4fe060f322

View File

@ -43,6 +43,7 @@ async function execHelm(args: string[], options?: BaseEncodingOptions & ExecFile
export async function listReleases(pathToKubeconfig: string, namespace?: string): Promise<Record<string, any>[]> { export async function listReleases(pathToKubeconfig: string, namespace?: string): Promise<Record<string, any>[]> {
const args = [ const args = [
"ls", "ls",
"--all",
"--output", "json", "--output", "json",
]; ];