Skip to content

Commit d5d729f

Browse files
committed
fix: update gateway instructions
1 parent 343ae26 commit d5d729f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

chart/templates/server-ide-configmap.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,19 +110,19 @@ clients:
110110
defaultDesktopIDE: "code-desktop"
111111
desktopIDEs: ["code-desktop"]
112112
installationSteps: [
113-
"If you don't see an open dialog by the browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/download'>VS Code</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
113+
"If you don't see an open dialog in your browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/download'>VS Code</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
114114
]
115115
vscode-insiders:
116116
defaultDesktopIDE: "code-desktop-insiders"
117117
desktopIDEs: ["code-desktop-insiders"]
118118
installationSteps: [
119-
"If you don't see an open dialog by the browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/insiders'>VS Code Insiders</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
119+
"If you don't see an open dialog in your browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/insiders'>VS Code Insiders</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
120120
]
121121
jetbrains-gateway:
122122
defaultDesktopIDE: "intellij"
123123
desktopIDEs: ["intellij", "goland", "pycharm", "phpstorm"]
124124
installationSteps: [
125-
"If you don't see an open dialog by the browser, make sure you have <a target='_blank' class='gp-link' href='https://www.jetbrains.com/remote-development/gateway'>JetBrains Gateway</a> with <a target='_blank' class='gp-link' href='https://github.com/gitpod-io/gitpod/blob/main/components/ide/jetbrains/gateway-plugin/doc/installing.md'>Gitpod Plugin</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
125+
"If you don't see an open dialog in your browser, make sure you havethe <a target='_blank' class='gp-link' href='https://www.jetbrains.com/remote-development/gateway'>JetBrains Gateway</a> and <a target='_blank' class='gp-link' href='https://www.gitpod.io/docs/ides-and-editors/jetbrains-gateway'>Gitpod Plugin</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
126126
]
127127
{{ end }}
128128

install/installer/pkg/components/server/ide/configmap.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ func configmap(ctx *common.RenderContext) ([]runtime.Object, error) {
3939
DefaultDesktopIDE: codeDesktop,
4040
DesktopIDEs: []string{codeDesktop},
4141
InstallationSteps: []string{
42-
"If you don't see an open dialog by the browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/download'>VS Code</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
42+
"If you don't see an open dialog in your browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/download'>VS Code</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
4343
},
4444
},
4545
"vscode-insiders": {
4646
DefaultDesktopIDE: codeDesktopInsiders,
4747
DesktopIDEs: []string{codeDesktopInsiders},
4848
InstallationSteps: []string{
49-
"If you don't see an open dialog by the browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/insiders'>VS Code Insiders</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
49+
"If you don't see an open dialog in your browser, make sure you have <a target='_blank' class='gp-link' href='https://code.visualstudio.com/insiders'>VS Code Insiders</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
5050
},
5151
},
5252
"jetbrains-gateway": {
5353
DefaultDesktopIDE: intellij,
5454
DesktopIDEs: []string{intellij, goland, pycharm, phpstorm},
5555
InstallationSteps: []string{
56-
"If you don't see an open dialog by the browser, make sure you have <a target='_blank' class='gp-link' href='https://www.jetbrains.com/remote-development/gateway'>JetBrains Gateway</a> with <a target='_blank' class='gp-link' href='https://github.com/gitpod-io/gitpod/blob/main/components/ide/jetbrains/gateway-plugin/doc/installing.md'>Gitpod Plugin</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
56+
"If you don't see an open dialog in your browser, make sure you have the <a target='_blank' class='gp-link' href='https://www.jetbrains.com/remote-development/gateway'>JetBrains Gateway</a> and the <a target='_blank' class='gp-link' href='https://www.gitpod.io/docs/ides-and-editors/jetbrains-gateway'>Gitpod Plugin</a> installed on your machine, and then click <b>${OPEN_LINK_LABEL}</b> below.",
5757
},
5858
},
5959
},

0 commit comments

Comments
 (0)