Skip to content

Commit aa67564

Browse files
committed
Move the IDE to our GCP registry 🎉
1 parent 2b080e6 commit aa67564

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

install/installer/pkg/components/blobserve/configmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func configmap(ctx *common.RenderContext) ([]runtime.Object, error) {
9999
PrePull: []string{},
100100
Workdir: "/.supervisor/frontend",
101101
},
102-
ctx.RepoName("registry.hub.docker.com", "filiptronicek/xterm-ide"): {
102+
ctx.RepoName(ctx.Config.Repository, ide.XtermIDEImage): {
103103
PrePull: []string{},
104104
Workdir: "/ide",
105105
},

install/installer/pkg/components/ide-service/ide_config_configmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ func ideConfigConfigmap(ctx *common.RenderContext) ([]runtime.Object, error) {
203203
Logo: getIdeLogoPath("xterm"),
204204
Tooltip: "A terminal in the browser with Xterm.js",
205205
Label: "Insiders",
206-
Image: ctx.ImageName("registry.hub.docker.com", "filiptronicek/xterm-ide", "latest"),
206+
Image: ctx.ImageName(ctx.Config.Repository, ide.XtermIDEImage, "latest"),
207207
ResolveImageDigest: true,
208208
},
209209
},

install/installer/pkg/components/workspace/ide/constants.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const (
1212
CodeWebExtensionVersion = "commit-3b076b91039c47404d98c4a3198edf2982e24af7" // gitpod-web extension version comes from https://github.com/gitpod-io/gitpod-code
1313
CodeDesktopIDEImage = "ide/code-desktop"
1414
CodeDesktopInsidersIDEImage = "ide/code-desktop-insiders"
15+
XtermIDEImage = "ide/xterm-web"
1516
IntelliJDesktopIDEImage = "ide/intellij"
1617
GoLandDesktopIdeImage = "ide/goland"
1718
PyCharmDesktopIdeImage = "ide/pycharm"

0 commit comments

Comments
 (0)