From c9f2c814a7506320c5942a91a1eea736d2b21a60 Mon Sep 17 00:00:00 2001 From: Lou Bichard Date: Wed, 23 Feb 2022 19:39:41 +0000 Subject: [PATCH] jb: fix update gateway instructions --- chart/templates/server-ide-configmap.yaml | 6 +++--- components/ide/jetbrains/gateway-plugin/doc/installing.md | 6 ------ install/installer/pkg/components/server/ide/configmap.go | 6 +++--- 3 files changed, 6 insertions(+), 12 deletions(-) delete mode 100644 components/ide/jetbrains/gateway-plugin/doc/installing.md diff --git a/chart/templates/server-ide-configmap.yaml b/chart/templates/server-ide-configmap.yaml index 8eabddebdd9701..cefbee02164393 100644 --- a/chart/templates/server-ide-configmap.yaml +++ b/chart/templates/server-ide-configmap.yaml @@ -110,19 +110,19 @@ clients: defaultDesktopIDE: "code-desktop" desktopIDEs: ["code-desktop"] installationSteps: [ - "If you don't see an open dialog by the browser, make sure you have VS Code installed on your machine, and then click ${OPEN_LINK_LABEL} below.", + "If you don't see an open dialog in your browser, make sure you have VS Code installed on your machine, and then click ${OPEN_LINK_LABEL} below.", ] vscode-insiders: defaultDesktopIDE: "code-desktop-insiders" desktopIDEs: ["code-desktop-insiders"] installationSteps: [ - "If you don't see an open dialog by the browser, make sure you have VS Code Insiders installed on your machine, and then click ${OPEN_LINK_LABEL} below.", + "If you don't see an open dialog in your browser, make sure you have VS Code Insiders installed on your machine, and then click ${OPEN_LINK_LABEL} below.", ] jetbrains-gateway: defaultDesktopIDE: "intellij" desktopIDEs: ["intellij", "goland", "pycharm", "phpstorm"] installationSteps: [ - "If you don't see an open dialog by the browser, make sure you have JetBrains Gateway with Gitpod Plugin installed on your machine, and then click ${OPEN_LINK_LABEL} below.", + "If you don't see an open dialog in your browser, make sure you have the JetBrains Gateway with Gitpod Plugin installed on your machine, and then click ${OPEN_LINK_LABEL} below.", ] {{ end }} diff --git a/components/ide/jetbrains/gateway-plugin/doc/installing.md b/components/ide/jetbrains/gateway-plugin/doc/installing.md deleted file mode 100644 index f3c011d54bba83..00000000000000 --- a/components/ide/jetbrains/gateway-plugin/doc/installing.md +++ /dev/null @@ -1,6 +0,0 @@ -## Installing Gitpod plugin in JetBrains Gateway - -- Install latest [JetBrains Gateway](https://www.jetbrains.com/help/idea/remote-development-a.html#gateway) - - Please make sure to install Release, not EAP version. -- Launch Gateway and open plugin settings -- Search for "Gitpod Gateway" and click install diff --git a/install/installer/pkg/components/server/ide/configmap.go b/install/installer/pkg/components/server/ide/configmap.go index 7664e8b51a7ca9..ed33965034532f 100644 --- a/install/installer/pkg/components/server/ide/configmap.go +++ b/install/installer/pkg/components/server/ide/configmap.go @@ -39,21 +39,21 @@ func configmap(ctx *common.RenderContext) ([]runtime.Object, error) { DefaultDesktopIDE: codeDesktop, DesktopIDEs: []string{codeDesktop}, InstallationSteps: []string{ - "If you don't see an open dialog by the browser, make sure you have VS Code installed on your machine, and then click ${OPEN_LINK_LABEL} below.", + "If you don't see an open dialog in your browser, make sure you have VS Code installed on your machine, and then click ${OPEN_LINK_LABEL} below.", }, }, "vscode-insiders": { DefaultDesktopIDE: codeDesktopInsiders, DesktopIDEs: []string{codeDesktopInsiders}, InstallationSteps: []string{ - "If you don't see an open dialog by the browser, make sure you have VS Code Insiders installed on your machine, and then click ${OPEN_LINK_LABEL} below.", + "If you don't see an open dialog in your browser, make sure you have VS Code Insiders installed on your machine, and then click ${OPEN_LINK_LABEL} below.", }, }, "jetbrains-gateway": { DefaultDesktopIDE: intellij, DesktopIDEs: []string{intellij, goland, pycharm, phpstorm}, InstallationSteps: []string{ - "If you don't see an open dialog by the browser, make sure you have JetBrains Gateway with Gitpod Plugin installed on your machine, and then click ${OPEN_LINK_LABEL} below.", + "If you don't see an open dialog in your browser, make sure you have the JetBrains Gateway with Gitpod Plugin installed on your machine, and then click ${OPEN_LINK_LABEL} below.", }, }, },