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

Fix Kubectl 1.18 version in version map (#1846)

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-12-23 11:58:32 +02:00 committed by GitHub
parent 99c8025cb7
commit 5b5dd335e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ const kubectlMap: Map<string, string> = new Map([
["1.15", "1.15.11"], ["1.15", "1.15.11"],
["1.16", "1.16.15"], ["1.16", "1.16.15"],
["1.17", bundledVersion], ["1.17", bundledVersion],
["1.18", "1.18.15"], ["1.18", "1.18.14"],
["1.19", "1.19.5"], ["1.19", "1.19.5"],
["1.20", "1.20.0"] ["1.20", "1.20.0"]
]); ]);