This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 87345e8c9 update quarkus-native.adoc
87345e8c9 is described below
commit 87345e8c9dedcb7147625f6c04271b7dd5e4514c
Author: Babak Vahdat <[email protected]>
AuthorDate: Tue Feb 27 15:09:09 2024 +0100
update quarkus-native.adoc
---
docs/modules/ROOT/pages/running/quarkus-native.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/modules/ROOT/pages/running/quarkus-native.adoc
b/docs/modules/ROOT/pages/running/quarkus-native.adoc
index 323c210dd..a178d1afe 100644
--- a/docs/modules/ROOT/pages/running/quarkus-native.adoc
+++ b/docs/modules/ROOT/pages/running/quarkus-native.adoc
@@ -13,7 +13,7 @@ This is the default. As the default Camel K runtime is
Quarkus, then, every Came
If you want to go Quarkus native, then you need to familiarize with the
xref:traits:quarkus.adoc[Quarkus trait]. This trait is used to configure any
aspect related to Quarkus build. The most straightforward way is to use
`quarkus.build-mode=native` parameter:
[source,console]
-$ kamel run quarkus.build-mode=native ...
+$ kamel run -t quarkus.build-mode=native ...
This one will trigger a native compilation on your cluster. Mind that a native
compilation require quite certain amount of memory and specific tooling
(GraalVM). For this reason, any native build will be forced to execute with
`pod` build strategy, meaning that a new Kubernetes Pod is scheduled to perform
such operation. We calculate certain sensible values for Kubernetes resource
such as memory and CPU (4Gi and 1000 millicores). However, depending on the
complexity of your Camel applica [...]