File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -216,13 +216,25 @@ EOF
216
216
yq e -i " .containerRegistry.s3storage.bucket = \" ${CONTAINER_REGISTRY_BUCKET} \" " " ${CONFIG_FILE} "
217
217
yq e -i " .containerRegistry.s3storage.certificate.kind = \" secret\" " " ${CONFIG_FILE} "
218
218
yq e -i " .containerRegistry.s3storage.certificate.name = \" ${SECRET_STORAGE} \" " " ${CONFIG_FILE} "
219
+ yq e -i " .workspace.runtime.fsShiftMethod = \" shiftfs\" " " ${CONFIG_FILE} "
219
220
220
221
gitpod-installer \
221
222
render \
222
223
--config=" ${CONFIG_FILE} " > gitpod.yaml
223
224
224
225
kubectl apply -f gitpod.yaml
225
226
227
+ # remove shiftfs-module-loader container.
228
+ # TODO: remove once the container is removed from the installer
229
+ kubectl patch daemonset ws-daemon --type json -p=' [{"op": "remove", "path": "/spec/template/spec/initContainers/3"}]'
230
+ # Patch proxy service to remove use of cloud load balancer. In EKS we use ALB.
231
+ kubectl patch service proxy --type merge --patch \
232
+ " $( cat << EOF
233
+ spec:
234
+ type: ClusterIP
235
+ EOF
236
+ ) "
237
+
226
238
# wait for update of the ingress status
227
239
until [ -n " $( kubectl get ingress gitpod -o jsonpath=' {.status.loadBalancer.ingress[0].hostname}' ) " ]; do
228
240
sleep 5
You can’t perform that action at this time.
0 commit comments