Skip to content

Commit 9dc9c5f

Browse files
committed
Update to 0.9.2
1 parent 40cab77 commit 9dc9c5f

File tree

29 files changed

+66
-57
lines changed

29 files changed

+66
-57
lines changed

.github/workflows/reusable-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
required: true
2727

2828
env:
29-
VERSION: 0.9.1
29+
VERSION: 0.9.2
3030

3131
jobs:
3232
publish-next:

.github/workflows/reusable-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
required: true
2020

2121
env:
22-
VERSION: 0.9.1
22+
VERSION: 0.9.2
2323

2424
jobs:
2525
build:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM theiacloud/theia-cloud-demo:0.9.1 as production-stage
1+
FROM theiacloud/theia-cloud-demo:0.9.2 as production-stage
22

3-
COPY --chown=theia:theia theiacloud-monitor-0.9.1.vsix /home/theia/plugins
3+
COPY --chown=theia:theia theiacloud-monitor-0.9.2.vsix /home/theia/plugins

dockerfiles/operator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN mkdir /templates
1515
WORKDIR /log-config
1616
COPY java/operator/org.eclipse.theia.cloud.operator/log4j2.xml .
1717
WORKDIR /operator
18-
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.9.1-jar-with-dependencies.jar .
18+
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.9.2-jar-with-dependencies.jar .
1919
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
20-
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.9.1-jar-with-dependencies.jar" ]
20+
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.9.2-jar-with-dependencies.jar" ]
2121
CMD [ "" ]

dockerfiles/operator/Dockerfile.withcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir /templates
1616
WORKDIR /log-config
1717
COPY java/operator/org.eclipse.theia.cloud.operator/log4j2.xml .
1818
WORKDIR /operator
19-
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.9.1-jar-with-dependencies.jar .
19+
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.9.2-jar-with-dependencies.jar .
2020
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
21-
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.9.1-jar-with-dependencies.jar" ]
21+
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.9.2-jar-with-dependencies.jar" ]
2222
CMD [ "" ]

dockerfiles/service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN cd /service/common/maven-conf && \
1212

1313
FROM eclipse-temurin:17-jre-alpine
1414
WORKDIR /service
15-
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.9.1-runner.jar .
15+
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.9.2-runner.jar .
1616
ENV APPID default-app-id
1717
ENV SERVICE_PORT 8081
1818

@@ -29,5 +29,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
2929
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
3030
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
3131
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
32-
-jar ./service-0.9.1-runner.jar
32+
-jar ./service-0.9.2-runner.jar
3333
CMD [ "" ]

dockerfiles/service/Dockerfile.withcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.m2 \
1313

1414
FROM eclipse-temurin:17-jre-alpine
1515
WORKDIR /service
16-
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.9.1-runner.jar .
16+
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.9.2-runner.jar .
1717
ENV APPID default-app-id
1818
ENV SERVICE_PORT 8081
1919

@@ -30,5 +30,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
3030
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
3131
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
3232
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
33-
-jar ./service-0.9.1-runner.jar
33+
-jar ./service-0.9.2-runner.jar
3434
CMD [ "" ]

helm/theia.cloud/valuesGKETryNow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ issuer:
88
email: jfaltermeier@eclipsesource.com
99

1010
image:
11-
name: theiacloud/theia-cloud-demo:0.9.1
11+
name: theiacloud/theia-cloud-demo:0.9.2
1212
pullSecret: ""
1313
timeoutStrategy: "FIXEDTIME"
1414
timeoutLimit: "30"
@@ -22,7 +22,7 @@ hosts:
2222
instance: ws.theia-cloud.io
2323

2424
landingPage:
25-
image: theiacloud/theia-cloud-try-now-page:0.9.1
25+
image: theiacloud/theia-cloud-try-now-page:0.9.2
2626
appDefinition: "theia-cloud-demo"
2727
ephemeralStorage: true
2828
additionalApps:

helm/theia.cloud/valuesMonitor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ app:
55
name: Theia Blueprint
66

77
image:
8-
name: theiacloud/theia-cloud-activity-demo:0.9.1
8+
name: theiacloud/theia-cloud-activity-demo:0.9.2
99
pullSecret: ""
1010
timeoutStrategy: "FIXEDTIME"
1111
timeoutLimit: "0"
@@ -19,7 +19,7 @@ hosts:
1919
instance: ws.theia-cloud.io
2020

2121
landingPage:
22-
image: theiacloud/theia-cloud-try-now-page:0.9.1
22+
image: theiacloud/theia-cloud-try-now-page:0.9.2
2323
appDefinition: "theia-cloud-demo"
2424
ephemeralStorage: true
2525

helm/theia.cloud/valuesTestTrynowPage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hosts:
1515
instance: ws.192.168.39.3.nip.io
1616

1717
landingPage:
18-
image: theiacloud/theia-cloud-try-now-page:0.9.1
18+
image: theiacloud/theia-cloud-try-now-page:0.9.2
1919
imagePullPolicy: Always
2020
appDefinition: "theia-cloud-demo"
2121
ephemeralStorage: true

0 commit comments

Comments
 (0)