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

Bundle kubectl 1.23.3 (#4837)

This commit is contained in:
Jari Kolehmainen 2022-02-10 16:38:21 +02:00 committed by GitHub
parent 8480b2a1e5
commit c46d0036cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -47,7 +47,7 @@
"postversion": "git push --set-upstream ${GIT_REMOTE:-origin} release/v$npm_package_version" "postversion": "git push --set-upstream ${GIT_REMOTE:-origin} release/v$npm_package_version"
}, },
"config": { "config": {
"bundledKubectlVersion": "1.21.2", "bundledKubectlVersion": "1.23.3",
"bundledHelmVersion": "3.7.2", "bundledHelmVersion": "3.7.2",
"sentryDsn": "" "sentryDsn": ""
}, },

View File

@ -35,7 +35,9 @@ const kubectlMap: Map<string, string> = new Map([
["1.18", "1.18.20"], ["1.18", "1.18.20"],
["1.19", "1.19.12"], ["1.19", "1.19.12"],
["1.20", "1.20.8"], ["1.20", "1.20.8"],
["1.21", bundledVersion], ["1.21", "1.21.9"],
["1.22", "1.22.6"],
["1.23", bundledVersion],
]); ]);
let bundledPath: string; let bundledPath: string;
const initScriptVersionString = "# lens-initscript v3"; const initScriptVersionString = "# lens-initscript v3";