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

set contextName

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2022-02-23 17:00:35 +02:00
parent cc047e0d55
commit 35ed7e6744
2 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,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": {
"k8sProxyVersion": "0.1.1", "k8sProxyVersion": "0.1.2",
"bundledKubectlVersion": "1.23.3", "bundledKubectlVersion": "1.23.3",
"bundledHelmVersion": "3.7.2", "bundledHelmVersion": "3.7.2",
"sentryDsn": "" "sentryDsn": ""

View File

@ -51,6 +51,7 @@ export class KubeAuthProxy {
env: { env: {
...this.env, ...this.env,
KUBECONFIG: this.cluster.kubeConfigPath, KUBECONFIG: this.cluster.kubeConfigPath,
KUBECONFIG_CONTEXT: this.cluster.contextName,
API_PREFIX: this.apiPrefix, API_PREFIX: this.apiPrefix,
}, },
}); });