Skip to content

Commit 72ff122

Browse files
committed
[dev] Rebuild dev/image on rebase
1 parent 43c540a commit 72ff122

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:clu-dev-env.1
1+
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:pluggable-workspace-cluster.9
22
workspaceLocation: gitpod/gitpod-ws.theia-workspace
33
checkoutLocation: gitpod
44
ports:

.werft/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pod:
3030
- name: MYSQL_TCP_PORT
3131
value: 23306
3232
- name: build
33-
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:clu-dev-env.1
33+
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:pluggable-workspace-cluster.9
3434
workingDir: /workspace
3535
imagePullPolicy: Always
3636
volumeMounts:

.werft/run-integration-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pod:
2222
emptyDir: {}
2323
initContainers:
2424
- name: gcloud
25-
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:clu-dev-env.1
25+
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:pluggable-workspace-cluster.9
2626
workingDir: /workspace
2727
imagePullPolicy: Always
2828
volumeMounts:

.werft/wipe-devstaging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pod:
1414
secretName: gcp-sa-gitpod-dev-deployer
1515
containers:
1616
- name: wipe-devstaging
17-
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:clu-dev-env.1
17+
image: eu.gcr.io/gitpod-core-dev/dev/dev-environment:pluggable-workspace-cluster.9
1818
workingDir: /workspace
1919
imagePullPolicy: Always
2020
volumeMounts:

dev/image/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
FROM gitpod/workspace-full-vnc:latest
66

7-
ENV TRIGGER_REBUILD 8
7+
ENV TRIGGER_REBUILD 9
88

99
USER root
1010

@@ -64,7 +64,8 @@ ENV WERFT_DIAL_MODE=kubernetes
6464
RUN cd /usr/bin && curl -fsSL https://github.com/csweichel/werft/releases/download/v0.0.5rc/werft-client-linux-amd64.tar.gz | tar xz && mv werft-client-linux-amd64 werft
6565

6666
# yq - jq for YAML files
67-
RUN cd /usr/bin && curl -fsSL https://github.com/mikefarah/yq/releases/download/2.4.0/yq_linux_amd64 > yq && chmod +x yq
67+
# Note: we rely on version 3.x.x in various places, 4.x breaks this!
68+
RUN cd /usr/bin && curl -fsSL https://github.com/mikefarah/yq/releases/download/3.4.1/yq_linux_amd64 > yq && chmod +x yq
6869

6970
# release helper
7071
RUN cd /usr/bin && curl -fsSL https://github.com/c4milo/github-release/releases/download/v1.1.0/github-release_v1.1.0_linux_amd64.tar.gz | tar xz

0 commit comments

Comments
 (0)