diff --git a/.github/workflows/publish-demos.yml b/.github/workflows/publish-demos.yml
index 2eadf89e..ba4eac1e 100644
--- a/.github/workflows/publish-demos.yml
+++ b/.github/workflows/publish-demos.yml
@@ -17,7 +17,7 @@ on:
required: true
env:
- VERSION: 0.12.0
+ VERSION: 1.0.0-next
jobs:
check-version:
diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml
index 56c565eb..55608f0b 100644
--- a/.github/workflows/reusable-docker.yml
+++ b/.github/workflows/reusable-docker.yml
@@ -19,7 +19,7 @@ on:
required: true
env:
- VERSION: 0.12.0
+ VERSION: 1.0.0-next
jobs:
build:
diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile b/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile
index a3ccbabe..33e1a33b 100644
--- a/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile
+++ b/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile
@@ -2,9 +2,9 @@ FROM node:18-bullseye-slim as build-stage
# Copy and unzip the vsix file
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
-COPY theia-cloud-monitor-0.12.0.vsix /tmp/theia-cloud-monitor.vsix
+COPY theia-cloud-monitor-1.0.0-next.vsix /tmp/theia-cloud-monitor.vsix
RUN mkdir /tmp/extracted && unzip /tmp/theia-cloud-monitor.vsix -d /tmp/extracted
-FROM theiacloud/theia-cloud-demo:0.12.0 as production-stage
+FROM theiacloud/theia-cloud-demo:1.0.0-next as production-stage
COPY --chown=theia:theia --from=build-stage /tmp/extracted /home/theia/plugins
\ No newline at end of file
diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0.vsix b/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0-next.vsix
similarity index 98%
rename from demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0.vsix
rename to demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0-next.vsix
index 6d18dbdb..3bdc485c 100644
Binary files a/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0.vsix and b/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0-next.vsix differ
diff --git a/dockerfiles/conversion-webhook/Dockerfile b/dockerfiles/conversion-webhook/Dockerfile
index 56bf730b..e4a4bee1 100644
--- a/dockerfiles/conversion-webhook/Dockerfile
+++ b/dockerfiles/conversion-webhook/Dockerfile
@@ -12,7 +12,7 @@ RUN cd /conversion/common/maven-conf && \
FROM eclipse-temurin:17-jre-alpine
WORKDIR /conversion
-COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-0.12.0-runner.jar .
+COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-1.0.0-SNAPSHOT-runner.jar .
-ENTRYPOINT java -jar ./conversion-webhook-0.12.0-runner.jar
+ENTRYPOINT java -jar ./conversion-webhook-1.0.0-SNAPSHOT-runner.jar
CMD [ "" ]
\ No newline at end of file
diff --git a/dockerfiles/operator/Dockerfile b/dockerfiles/operator/Dockerfile
index 75d429fb..19c338e5 100644
--- a/dockerfiles/operator/Dockerfile
+++ b/dockerfiles/operator/Dockerfile
@@ -17,7 +17,7 @@ RUN mkdir /templates
WORKDIR /log-config
COPY java/operator/org.eclipse.theia.cloud.defaultoperator/log4j2.xml .
WORKDIR /operator
-COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-0.12.0-jar-with-dependencies.jar .
+COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar .
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
-ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-0.12.0-jar-with-dependencies.jar" ]
+ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar" ]
CMD [ "" ]
diff --git a/dockerfiles/operator/Dockerfile.withcache b/dockerfiles/operator/Dockerfile.withcache
index e95db639..db849445 100644
--- a/dockerfiles/operator/Dockerfile.withcache
+++ b/dockerfiles/operator/Dockerfile.withcache
@@ -18,7 +18,7 @@ RUN mkdir /templates
WORKDIR /log-config
COPY java/operator/org.eclipse.theia.cloud.defaultoperator/log4j2.xml .
WORKDIR /operator
-COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-0.12.0-jar-with-dependencies.jar .
+COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar .
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
-ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-0.12.0-jar-with-dependencies.jar" ]
+ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar" ]
CMD [ "" ]
diff --git a/dockerfiles/service/Dockerfile b/dockerfiles/service/Dockerfile
index e1911acc..934fcdd2 100644
--- a/dockerfiles/service/Dockerfile
+++ b/dockerfiles/service/Dockerfile
@@ -12,7 +12,7 @@ RUN cd /service/common/maven-conf && \
FROM eclipse-temurin:17-jre-alpine
WORKDIR /service
-COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.12.0-runner.jar .
+COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.0-SNAPSHOT-runner.jar .
ENV APPID default-app-id
ENV SERVICE_PORT 8081
@@ -29,5 +29,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
- -jar ./service-0.12.0-runner.jar
+ -jar ./service-1.0.0-SNAPSHOT-runner.jar
CMD [ "" ]
\ No newline at end of file
diff --git a/dockerfiles/service/Dockerfile.withcache b/dockerfiles/service/Dockerfile.withcache
index 47b29c33..b96cf5ff 100644
--- a/dockerfiles/service/Dockerfile.withcache
+++ b/dockerfiles/service/Dockerfile.withcache
@@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.m2 \
FROM eclipse-temurin:17-jre-alpine
WORKDIR /service
-COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.12.0-runner.jar .
+COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.0-SNAPSHOT-runner.jar .
ENV APPID default-app-id
ENV SERVICE_PORT 8081
@@ -30,5 +30,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
- -jar ./service-0.12.0-runner.jar
+ -jar ./service-1.0.0-SNAPSHOT-runner.jar
CMD [ "" ]
\ No newline at end of file
diff --git a/documentation/openapi.json b/documentation/openapi.json
index 38512186..84b5b94e 100644
--- a/documentation/openapi.json
+++ b/documentation/openapi.json
@@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "Theia Cloud API",
- "version": "0.12.0"
+ "version": "1.0.0"
},
"paths": {
"/service": {
diff --git a/java/common/maven-conf/pom.xml b/java/common/maven-conf/pom.xml
index c4fb90b6..c24a6cdf 100644
--- a/java/common/maven-conf/pom.xml
+++ b/java/common/maven-conf/pom.xml
@@ -5,7 +5,7 @@
4.0.0
org.eclipse.theia.cloud
conf
- 0.12.0
+ 1.0.0-SNAPSHOT
pom
Theia Cloud Maven Configuration
Common properties and configuration
diff --git a/java/common/org.eclipse.theia.cloud.common/pom.xml b/java/common/org.eclipse.theia.cloud.common/pom.xml
index 2d6b82ba..6cf402e3 100644
--- a/java/common/org.eclipse.theia.cloud.common/pom.xml
+++ b/java/common/org.eclipse.theia.cloud.common/pom.xml
@@ -11,7 +11,7 @@
org.eclipse.theia.cloud
conf
- 0.12.0
+ 1.0.0-SNAPSHOT
../../common/maven-conf/
diff --git a/java/conversion/org.eclipse.theia.cloud.conversion/README.md b/java/conversion/org.eclipse.theia.cloud.conversion/README.md
index cb270091..38d3514c 100644
--- a/java/conversion/org.eclipse.theia.cloud.conversion/README.md
+++ b/java/conversion/org.eclipse.theia.cloud.conversion/README.md
@@ -49,7 +49,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
./mvnw package -Pnative -Dquarkus.native.container-build=true
```
-You can then execute your native executable with: `./target/conversion-webhook-0.12.0-runner`
+You can then execute your native executable with: `./target/conversion-webhook-1.0.0-SNAPSHOT-runner`
If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.
diff --git a/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml b/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
index a2735405..809680f9 100644
--- a/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
+++ b/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
@@ -9,7 +9,7 @@
org.eclipse.theia.cloud
conf
- 0.12.0
+ 1.0.0-SNAPSHOT
../../common/maven-conf/
@@ -45,7 +45,7 @@
org.eclipse.theia.cloud
common
- 0.12.0
+ 1.0.0-SNAPSHOT
diff --git a/java/operator/README.md b/java/operator/README.md
index 3b53e7f0..5c40707d 100644
--- a/java/operator/README.md
+++ b/java/operator/README.md
@@ -15,7 +15,7 @@ This project implements the default Kubernetes Operator for Theia Cloud.
```sh
mvn clean install
-java -jar target/defaultoperator-0.12.0-jar-with-dependencies.jar
+java -jar target/defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar
```
#### Debugging the Default Theia Cloud Operator
diff --git a/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml b/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml
index 849b250f..06cb6f92 100644
--- a/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml
+++ b/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml
@@ -11,7 +11,7 @@
org.eclipse.theia.cloud
conf
- 0.12.0
+ 1.0.0-SNAPSHOT
../../common/maven-conf/
@@ -19,12 +19,12 @@
org.eclipse.theia.cloud
operator
- 0.12.0
+ 1.0.0-SNAPSHOT
org.eclipse.theia.cloud
common
- 0.12.0
+ 1.0.0-SNAPSHOT
org.json
diff --git a/java/operator/org.eclipse.theia.cloud.operator/pom.xml b/java/operator/org.eclipse.theia.cloud.operator/pom.xml
index 7add5633..ba7da32f 100644
--- a/java/operator/org.eclipse.theia.cloud.operator/pom.xml
+++ b/java/operator/org.eclipse.theia.cloud.operator/pom.xml
@@ -11,7 +11,7 @@
org.eclipse.theia.cloud
conf
- 0.12.0
+ 1.0.0-SNAPSHOT
../../common/maven-conf/
@@ -19,7 +19,7 @@
org.eclipse.theia.cloud
common
- 0.12.0
+ 1.0.0-SNAPSHOT
org.json
diff --git a/java/service/org.eclipse.theia.cloud.service/README.md b/java/service/org.eclipse.theia.cloud.service/README.md
index 3051d892..985ac1a6 100644
--- a/java/service/org.eclipse.theia.cloud.service/README.md
+++ b/java/service/org.eclipse.theia.cloud.service/README.md
@@ -58,7 +58,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
./mvnw package -Pnative -Dquarkus.native.container-build=true
```
-You can then execute your native executable with: `./target/service-0.12.0-runner`
+You can then execute your native executable with: `./target/service-1.0.0-SNAPSHOT-runner`
If you want to learn more about building native executables, please consult .
diff --git a/java/service/org.eclipse.theia.cloud.service/pom.xml b/java/service/org.eclipse.theia.cloud.service/pom.xml
index d3ab3a04..14f431a4 100644
--- a/java/service/org.eclipse.theia.cloud.service/pom.xml
+++ b/java/service/org.eclipse.theia.cloud.service/pom.xml
@@ -9,7 +9,7 @@
org.eclipse.theia.cloud
conf
- 0.12.0
+ 1.0.0-SNAPSHOT
../../common/maven-conf/
@@ -72,7 +72,7 @@
org.eclipse.theia.cloud
common
- 0.12.0
+ 1.0.0-SNAPSHOT
io.fabric8
diff --git a/java/service/org.eclipse.theia.cloud.service/src/main/java/org/eclipse/theia/cloud/service/TheiaCloudApiApplication.java b/java/service/org.eclipse.theia.cloud.service/src/main/java/org/eclipse/theia/cloud/service/TheiaCloudApiApplication.java
index b3cfceb3..8de0f6e1 100644
--- a/java/service/org.eclipse.theia.cloud.service/src/main/java/org/eclipse/theia/cloud/service/TheiaCloudApiApplication.java
+++ b/java/service/org.eclipse.theia.cloud.service/src/main/java/org/eclipse/theia/cloud/service/TheiaCloudApiApplication.java
@@ -20,6 +20,6 @@
import jakarta.ws.rs.core.Application;
-@OpenAPIDefinition(info = @Info(title = "Theia Cloud API", version = "0.12.0"))
+@OpenAPIDefinition(info = @Info(title = "Theia Cloud API", version = "1.0.0"))
public class TheiaCloudApiApplication extends Application {
}
diff --git a/node/common/package.json b/node/common/package.json
index 2ecd2d16..0d21a8cf 100644
--- a/node/common/package.json
+++ b/node/common/package.json
@@ -1,6 +1,6 @@
{
"name": "@eclipse-theiacloud/common",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"description": "Common functionality for Theia Cloud",
"license": "EPL-2.0",
"keywords": [
diff --git a/node/common/src/client/api.ts b/node/common/src/client/api.ts
index 53c936f4..abc1327e 100644
--- a/node/common/src/client/api.ts
+++ b/node/common/src/client/api.ts
@@ -4,7 +4,7 @@
* Theia Cloud API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 0.12.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/node/common/src/client/base.ts b/node/common/src/client/base.ts
index eea5e2fd..dc902688 100644
--- a/node/common/src/client/base.ts
+++ b/node/common/src/client/base.ts
@@ -4,7 +4,7 @@
* Theia Cloud API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 0.12.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/node/common/src/client/common.ts b/node/common/src/client/common.ts
index 378f5d5f..d7b1e19a 100644
--- a/node/common/src/client/common.ts
+++ b/node/common/src/client/common.ts
@@ -4,7 +4,7 @@
* Theia Cloud API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 0.12.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/node/common/src/client/configuration.ts b/node/common/src/client/configuration.ts
index f4fac408..ff36cdd1 100644
--- a/node/common/src/client/configuration.ts
+++ b/node/common/src/client/configuration.ts
@@ -4,7 +4,7 @@
* Theia Cloud API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 0.12.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/node/common/src/client/index.ts b/node/common/src/client/index.ts
index 61081256..a886d8c5 100644
--- a/node/common/src/client/index.ts
+++ b/node/common/src/client/index.ts
@@ -4,7 +4,7 @@
* Theia Cloud API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
- * The version of the OpenAPI document: 0.12.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
diff --git a/node/landing-page/package.json b/node/landing-page/package.json
index a7e17108..dbe586d7 100644
--- a/node/landing-page/package.json
+++ b/node/landing-page/package.json
@@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@eclipse-theiacloud/common": "0.12.0",
+ "@eclipse-theiacloud/common": "1.0.0-next",
"keycloak-js": "20.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
diff --git a/node/monitor-theia/package.json b/node/monitor-theia/package.json
index 8e98fc60..879754ea 100644
--- a/node/monitor-theia/package.json
+++ b/node/monitor-theia/package.json
@@ -1,6 +1,6 @@
{
"name": "@eclipse-theiacloud/monitor-theia",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"keywords": [
"theia-extension"
],
diff --git a/node/monitor/package-lock.json b/node/monitor/package-lock.json
index 89615077..1a9eefff 100644
--- a/node/monitor/package-lock.json
+++ b/node/monitor/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "theia-cloud-monitor",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "theia-cloud-monitor",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"license": "EPL-2.0",
"dependencies": {
"express": "^4.19.2",
diff --git a/node/monitor/package.json b/node/monitor/package.json
index 389fa446..31f467f9 100644
--- a/node/monitor/package.json
+++ b/node/monitor/package.json
@@ -2,7 +2,7 @@
"name": "theia-cloud-monitor",
"displayName": "Theia Cloud Monitor extension",
"description": "Monitor for Theia Cloud hosted tools",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"license": "EPL-2.0",
"author": {
"name": "Theia Cloud"
diff --git a/node/package-lock.json b/node/package-lock.json
index 4add66c1..a6f69571 100644
--- a/node/package-lock.json
+++ b/node/package-lock.json
@@ -34,7 +34,7 @@
},
"common": {
"name": "@eclipse-theiacloud/common",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"license": "EPL-2.0",
"dependencies": {
"@types/uuid": "^8.3.4",
@@ -45,7 +45,7 @@
"landing-page": {
"version": "0.1.0",
"dependencies": {
- "@eclipse-theiacloud/common": "0.12.0",
+ "@eclipse-theiacloud/common": "1.0.0-next",
"keycloak-js": "20.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
@@ -61,7 +61,7 @@
},
"monitor-theia": {
"name": "@eclipse-theiacloud/monitor-theia",
- "version": "0.12.0",
+ "version": "1.0.0-next",
"devDependencies": {
"rimraf": "^3.0.2"
},
@@ -23890,7 +23890,7 @@
"testing-page": {
"version": "0.1.0",
"dependencies": {
- "@eclipse-theiacloud/common": "0.12.0",
+ "@eclipse-theiacloud/common": "1.0.0-next",
"keycloak-js": "^17.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
diff --git a/node/testing-page/package.json b/node/testing-page/package.json
index 709f6366..aac5fb93 100644
--- a/node/testing-page/package.json
+++ b/node/testing-page/package.json
@@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
- "@eclipse-theiacloud/common": "0.12.0",
+ "@eclipse-theiacloud/common": "1.0.0-next",
"keycloak-js": "^17.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
diff --git a/terraform/modules/helm/theia-cloud.yaml b/terraform/modules/helm/theia-cloud.yaml
index edfe2e0f..9e7a28f8 100644
--- a/terraform/modules/helm/theia-cloud.yaml
+++ b/terraform/modules/helm/theia-cloud.yaml
@@ -5,7 +5,7 @@ app:
name: Theia Cloud
demoApplication:
- name: theiacloud/theia-cloud-demo:0.12.0
+ name: theiacloud/theia-cloud-demo:1.0.0-next
pullSecret: ""
timeoutStrategy: "FIXEDTIME"
timeoutLimit: "30"
@@ -21,7 +21,7 @@ hosts:
instance: instances
landingPage:
- image: theiacloud/theia-cloud-landing-page:0.12.0
+ image: theiacloud/theia-cloud-landing-page:1.0.0-next
appDefinition: "theia-cloud-demo"
ephemeralStorage: false
diff --git a/terraform/test-configurations/2-02_monitor/theia_cloud.tf b/terraform/test-configurations/2-02_monitor/theia_cloud.tf
index a38a01ef..14a84af7 100644
--- a/terraform/test-configurations/2-02_monitor/theia_cloud.tf
+++ b/terraform/test-configurations/2-02_monitor/theia_cloud.tf
@@ -82,7 +82,7 @@ resource "helm_release" "theia-cloud" {
set {
name = "demoApplication.name"
- value = var.use_vscode_extension ? "theiacloud/theia-cloud-activity-demo:0.12.0" : "theiacloud/theia-cloud-activity-demo-theia:0.12.0"
+ value = var.use_vscode_extension ? "theiacloud/theia-cloud-activity-demo:1.0.0-next" : "theiacloud/theia-cloud-activity-demo-theia:1.0.0-next"
}
set {
diff --git a/terraform/values/valuesDemo.yaml b/terraform/values/valuesDemo.yaml
index 49a20848..9d0d53a6 100644
--- a/terraform/values/valuesDemo.yaml
+++ b/terraform/values/valuesDemo.yaml
@@ -8,7 +8,7 @@ issuer:
email: jfaltermeier@eclipsesource.com
demoApplication:
- name: theiacloud/theia-cloud-demo:0.12.0
+ name: theiacloud/theia-cloud-demo:1.0.0-next
pullSecret: ""
timeoutStrategy: "FIXEDTIME"
timeoutLimit: "30"
@@ -24,7 +24,7 @@ hosts:
instance: ws
landingPage:
- image: theiacloud/theia-cloud-landing-page:0.12.0
+ image: theiacloud/theia-cloud-landing-page:1.0.0-next
appDefinition: "theia-cloud-demo"
ephemeralStorage: true
additionalApps:
diff --git a/terraform/values/valuesMonitor.yaml b/terraform/values/valuesMonitor.yaml
index 5616f519..3268d082 100644
--- a/terraform/values/valuesMonitor.yaml
+++ b/terraform/values/valuesMonitor.yaml
@@ -5,7 +5,7 @@ app:
name: Theia Blueprint
demoApplication:
- name: theiacloud/theia-cloud-activity-demo:0.12.0
+ name: theiacloud/theia-cloud-activity-demo:1.0.0-next
pullSecret: ""
timeoutStrategy: "FIXEDTIME"
timeoutLimit: "0"
@@ -25,7 +25,7 @@ hosts:
instance: ws
landingPage:
- image: theiacloud/theia-cloud-landing-page:0.12.0
+ image: theiacloud/theia-cloud-landing-page:1.0.0-next
appDefinition: "theia-cloud-demo"
ephemeralStorage: true