Replies: 3 comments 2 replies
-
Thank you @agoncal ! For the different options, like "Quarkus Docker Native":
|
Beta Was this translation helpful? Give feedback.
-
@jdubois The way the Mustache templates are structured makes it difficult to add a new runtime. For example, take the
To keep the same structure, we add a new runtime. That means that if the runtime is Quarkus, then, we have a
AFAIK Mustache does not allow to have several inverted section. Wouldn't it be possible to restructure the code so there is a
|
Beta Was this translation helpful? Give feedback.
-
Yes, let’s have a "runtimeDefault" |
Beta Was this translation helpful? Give feedback.
-
Before creating an issue or PR, I'm opening up a discussion about deploying a Quarkus application with NubesGen.
Like Spring Boot, a Quarkus application can be deployed in several modes:
The way of building these artifacts is throught Quarkus properties passed to the Quarkus Maven(Gradle) plugin:
mvn package
(i.e(mvn package -Dquarkus.package.type=jar
) to build an executable JARmvn package -Dquarkus.container-image.build=true
(i.e.mvn package -Dquarkus.container-image.build=true -Dquarkus.package.type=jar
)mvn package -Dquarkus.container-image.build=true -Dquarkus.package.type=native -Dquarkus.native.container-build=true
Quarkus has specific properties. For example, the ones used for the datasource in the
app-service/main.tf
file:Beta Was this translation helpful? Give feedback.
All reactions