diff --git a/README.md b/README.md index 00bef5a..e650719 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ The extension starts a development environment in your Kubernetes cluster by usi ## Requirements -1. VS Code 1.66 or newer. -1. Deploy access to a Kubernetes cluster (you can use https://cloud.okteto.com/, Okteto's free managed Kubernetes service for developers). +1. VS Code 1.88 or newer. +1. Deploy access to a Kubernetes cluster. 1. An OpenSSH compatible [SSH client](https://code.visualstudio.com/docs/remote/troubleshooting#_installing-a-supported-ssh-client). ## Installation @@ -47,9 +47,7 @@ Got questions? Have feedback? ## Stay in Touch -Join [the conversation in Slack](https://kubernetes.slack.com/messages/CM1QMQGS0/)! If you don't already have a Kubernetes slack account, [sign up here](http://slack.k8s.io/). - -You can also reach out to [@OktetoHQ](https://twitter.com/oktetohq) on Twitter. +Join [the conversation in our online community](https://community.okteto.com). You can also reach out to [@OktetoHQ](https://twitter.com/oktetohq) on Twitter. ## License diff --git a/package.json b/package.json index ebac70c..e2dd973 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "gke", "eks" ], - "version": "0.4.13", + "version": "0.5.0", "icon": "media/icon.png", "author": { "name": "Ramiro Berrelleza", diff --git a/src/extension.ts b/src/extension.ts index c88ab22..94e52d6 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -494,7 +494,7 @@ async function contextCmd(){ let context = choice.value; if (choice.value === "create") { - const create = await vscode.window.showInputBox({title: "Set the context for all the Okteto commands", prompt: "Specify an Okteto URL or a Kubernetes context name", placeHolder: "https://cloud.okteto.com"}) + const create = await vscode.window.showInputBox({title: "Set the context for all the Okteto commands", prompt: "Specify an Okteto URL or a Kubernetes context name", placeHolder: "https://okteto.example.com"}) if (!create) { return; } diff --git a/src/okteto.ts b/src/okteto.ts index b17894e..2c8da02 100644 --- a/src/okteto.ts +++ b/src/okteto.ts @@ -20,7 +20,6 @@ const pidFile = 'okteto.pid'; const contextFolder = 'context'; const contextFile = 'config.json'; const terminalName = 'okteto'; -const cloudUrl = 'https://cloud.okteto.com'; export const state = { starting: 'starting', @@ -596,11 +595,6 @@ export async function getContextList(): Promise{ console.error(`failed to get context list from ${getContextConfigurationFile()}: ${err}`); } - if (items.filter(f => f.label === cloudUrl).length == 0) { - items.unshift(new RuntimeItem(cloudUrl, "", cloudUrl)) - } - - items.push(new RuntimeItem("Create new context", "Create new context", "create")) return items; }