This is an automated email from the ASF dual-hosted git repository.

github-bot 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 061a5b330 chore: nightly automatic updates
061a5b330 is described below

commit 061a5b33057c30ecdeb4a34b533f8ac6e805d669
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Dec 16 23:39:10 2025 +0000

    chore: nightly automatic updates
---
 README.adoc                                        |  2 +-
 docs/modules/ROOT/partials/apis/camel-k-crds.adoc  | 20 +++--
 docs/modules/traits/pages/jvm.adoc                 |  4 +-
 docs/modules/traits/pages/keda.adoc                | 11 ++-
 helm/camel-k/crds/camel-k-crds.yaml                | 88 ++++++++++++----------
 pkg/apis/camel/v1/trait/zz_generated.deepcopy.go   | 12 +--
 pkg/apis/camel/v1/zz_generated.deepcopy.go         |  1 -
 .../duck/keda/v1alpha1/zz_generated.deepcopy.go    |  2 +-
 .../camel.apache.org_integrationplatforms.yaml     | 22 +++---
 .../camel.apache.org_integrationprofiles.yaml      | 22 +++---
 .../crd/bases/camel.apache.org_integrations.yaml   | 22 +++---
 .../config/crd/bases/camel.apache.org_pipes.yaml   | 22 +++---
 12 files changed, 124 insertions(+), 104 deletions(-)

diff --git a/README.adoc b/README.adoc
index aee5b51ae..d418edf63 100644
--- a/README.adoc
+++ b/README.adoc
@@ -11,7 +11,7 @@ 
image:https://github.com/apache/camel-k/actions/workflows/common.yml/badge.svg[";
 image:https://github.com/apache/camel-k/workflows/knative/badge.svg["Knative";, 
link="https://github.com/apache/camel-k/actions/workflows/knative.yml";]
 
image:https://github.com/apache/camel-k/actions/workflows/nightly-release.yml/badge.svg["Nightly
 releases", 
link="https://github.com/apache/camel-k/actions/workflows/nightly-release.yml";]
 
image:https://github.com/apache/camel-k/actions/workflows/native.yml/badge.svg["Quarkus
 native", link="https://github.com/apache/camel-k/actions/workflows/native.yml";]
-image:https://img.shields.io/badge/Coverage-50.6-yellow.svg["Go coverage", 
link="https://github.com/apache/camel-k/actions/workflows/nightly-coverage.yml";]
+image:https://img.shields.io/badge/Coverage-61.2-yellow.svg["Go coverage", 
link="https://github.com/apache/camel-k/actions/workflows/nightly-coverage.yml";]
 image:https://img.shields.io/badge/zulip-join_chat-brightgreen.svg["Chat on 
Zulip", link="https://camel.zulipchat.com";]
 
 Apache Camel K is a lightweight integration framework built from **Apache 
Camel** that runs natively on Kubernetes and is specifically designed for 
serverless and microservice architectures. Users of `Camel K` can instantly run 
integration code written in Camel DSL on their preferred **Cloud** provider.
diff --git a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc 
b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
index 1cc95669b..6c3dd80db 100644
--- a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
+++ b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
@@ -7812,6 +7812,15 @@ string
 The path where the generated truststore will be mounted
 Default: "/etc/camel/conf.d/_truststore"
 
+|`caCertPassword` +
+string
+|
+
+
+Required when caCert is set. A secret reference containing the truststore 
password.
+If the secret key is not specified, "password" is used as the default key.
+Example: "secret:my-truststore-password" or 
"secret:my-truststore-password/mykey"
+
 
 |===
 
@@ -8066,22 +8075,21 @@ int32
 
 Maximum number of replicas.
 
-|`auto` +
-bool
+|`triggers` +
+*xref:#_camel_apache_org_v1_trait_KedaTrigger[[\]KedaTrigger]*
 |
 
 
 Definition of triggers according to the KEDA format. Each trigger must contain 
`type` field corresponding
 to the name of a KEDA autoscaler and a key/value map named `metadata` 
containing specific trigger options
 and optionally a mapping of secrets, used by Keda operator to poll resources 
according to the autoscaler type.
-Automatically discover KEDA triggers from Camel component URIs.
 
-|`triggers` +
-*xref:#_camel_apache_org_v1_trait_KedaTrigger[[\]KedaTrigger]*
+|`auto` +
+bool
 |
 
 
-
+Automatically discover KEDA triggers from Camel component URIs.
 
 |`autoMetadata` +
 map[string]map[string]string
diff --git a/docs/modules/traits/pages/jvm.adoc 
b/docs/modules/traits/pages/jvm.adoc
index 07b6e06c8..baca4f6f9 100755
--- a/docs/modules/traits/pages/jvm.adoc
+++ b/docs/modules/traits/pages/jvm.adoc
@@ -74,7 +74,7 @@ Default: "/etc/camel/conf.d/_truststore"
 
 | jvm.ca-cert-password
 | string
-| **Required when ca-cert is set.** A secret reference containing the 
truststore password.
+| Required when caCert is set. A secret reference containing the truststore 
password.
 If the secret key is not specified, "password" is used as the default key.
 Example: "secret:my-truststore-password" or 
"secret:my-truststore-password/mykey"
 
@@ -151,5 +151,3 @@ This will automatically:
 4. Inject the truststore password securely as an environment variable from 
your secret
 
 NOTE: The `ca-cert-password` option is **required** when using `ca-cert`. The 
password is never exposed in command-line arguments - it is injected as an 
environment variable from the secret.
-
-
diff --git a/docs/modules/traits/pages/keda.adoc 
b/docs/modules/traits/pages/keda.adoc
index 949d5b613..d9e92dddc 100644
--- a/docs/modules/traits/pages/keda.adoc
+++ b/docs/modules/traits/pages/keda.adoc
@@ -47,16 +47,15 @@ The following configuration options are available:
 | int32
 | Maximum number of replicas.
 
-| keda.auto
-| bool
+| keda.triggers
+| []github.com/apache/camel-k/v2/pkg/apis/camel/v1/trait.KedaTrigger
 | Definition of triggers according to the KEDA format. Each trigger must 
contain `type` field corresponding
 to the name of a KEDA autoscaler and a key/value map named `metadata` 
containing specific trigger options
 and optionally a mapping of secrets, used by Keda operator to poll resources 
according to the autoscaler type.
-Automatically discover KEDA triggers from Camel component URIs.
 
-| keda.triggers
-| []github.com/apache/camel-k/v2/pkg/apis/camel/v1/trait.KedaTrigger
-| 
+| keda.auto
+| bool
+| Automatically discover KEDA triggers from Camel component URIs.
 
 | keda.auto-metadata
 | map[string]map[string]string
diff --git a/helm/camel-k/crds/camel-k-crds.yaml 
b/helm/camel-k/crds/camel-k-crds.yaml
index b42346021..4b324ed8c 100644
--- a/helm/camel-k/crds/camel-k-crds.yaml
+++ b/helm/camel-k/crds/camel-k-crds.yaml
@@ -4808,11 +4808,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -4856,6 +4853,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -7229,11 +7230,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -7277,6 +7275,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -9552,11 +9554,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -9600,6 +9599,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -11852,11 +11855,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -11900,6 +11900,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -20986,11 +20990,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -21034,6 +21035,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -23240,11 +23245,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -23288,6 +23290,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -33736,11 +33742,8 @@ spec:
                         description: The configuration of Keda trait
                         properties:
                           auto:
-                            description: |-
-                              Definition of triggers according to the KEDA 
format. Each trigger must contain `type` field corresponding
-                              to the name of a KEDA autoscaler and a key/value 
map named `metadata` containing specific trigger options
-                              and optionally a mapping of secrets, used by 
Keda operator to poll resources according to the autoscaler type.
-                              Automatically discover KEDA triggers from Camel 
component URIs.
+                            description: Automatically discover KEDA triggers 
from
+                              Camel component URIs.
                             type: boolean
                           autoMetadata:
                             additionalProperties:
@@ -33785,6 +33788,10 @@ spec:
                             format: int32
                             type: integer
                           triggers:
+                            description: |-
+                              Definition of triggers according to the KEDA 
format. Each trigger must contain `type` field corresponding
+                              to the name of a KEDA autoscaler and a key/value 
map named `metadata` containing specific trigger options
+                              and optionally a mapping of secrets, used by 
Keda operator to poll resources according to the autoscaler type.
                             items:
                               properties:
                                 metadata:
@@ -35922,11 +35929,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -35970,6 +35974,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
diff --git a/pkg/apis/camel/v1/trait/zz_generated.deepcopy.go 
b/pkg/apis/camel/v1/trait/zz_generated.deepcopy.go
index 56a98cff6..24cd6c132 100644
--- a/pkg/apis/camel/v1/trait/zz_generated.deepcopy.go
+++ b/pkg/apis/camel/v1/trait/zz_generated.deepcopy.go
@@ -5,7 +5,7 @@
 package trait
 
 import (
-       v1 "k8s.io/api/core/v1"
+       "k8s.io/api/core/v1"
        networkingv1 "k8s.io/api/networking/v1"
        "k8s.io/apimachinery/pkg/util/intstr"
 )
@@ -731,11 +731,6 @@ func (in *KedaTrait) DeepCopyInto(out *KedaTrait) {
                *out = new(int32)
                **out = **in
        }
-       if in.Auto != nil {
-               in, out := &in.Auto, &out.Auto
-               *out = new(bool)
-               **out = **in
-       }
        if in.Triggers != nil {
                in, out := &in.Triggers, &out.Triggers
                *out = make([]KedaTrigger, len(*in))
@@ -743,6 +738,11 @@ func (in *KedaTrait) DeepCopyInto(out *KedaTrait) {
                        (*in)[i].DeepCopyInto(&(*out)[i])
                }
        }
+       if in.Auto != nil {
+               in, out := &in.Auto, &out.Auto
+               *out = new(bool)
+               **out = **in
+       }
        if in.AutoMetadata != nil {
                in, out := &in.AutoMetadata, &out.AutoMetadata
                *out = make(map[string]map[string]string, len(*in))
diff --git a/pkg/apis/camel/v1/zz_generated.deepcopy.go 
b/pkg/apis/camel/v1/zz_generated.deepcopy.go
index caf14921f..9b1a09711 100644
--- a/pkg/apis/camel/v1/zz_generated.deepcopy.go
+++ b/pkg/apis/camel/v1/zz_generated.deepcopy.go
@@ -6,7 +6,6 @@ package v1
 
 import (
        "encoding/json"
-
        "github.com/apache/camel-k/v2/pkg/apis/camel/v1/trait"
        corev1 "k8s.io/api/core/v1"
        metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
diff --git a/pkg/apis/duck/keda/v1alpha1/zz_generated.deepcopy.go 
b/pkg/apis/duck/keda/v1alpha1/zz_generated.deepcopy.go
index 450aba305..27d57d72a 100644
--- a/pkg/apis/duck/keda/v1alpha1/zz_generated.deepcopy.go
+++ b/pkg/apis/duck/keda/v1alpha1/zz_generated.deepcopy.go
@@ -5,7 +5,7 @@
 package v1alpha1
 
 import (
-       v1 "k8s.io/api/core/v1"
+       "k8s.io/api/core/v1"
        "k8s.io/apimachinery/pkg/runtime"
 )
 
diff --git 
a/pkg/resources/config/crd/bases/camel.apache.org_integrationplatforms.yaml 
b/pkg/resources/config/crd/bases/camel.apache.org_integrationplatforms.yaml
index 67014b693..27cebea39 100644
--- a/pkg/resources/config/crd/bases/camel.apache.org_integrationplatforms.yaml
+++ b/pkg/resources/config/crd/bases/camel.apache.org_integrationplatforms.yaml
@@ -1559,11 +1559,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -1607,6 +1604,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -3980,11 +3981,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -4028,6 +4026,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
diff --git 
a/pkg/resources/config/crd/bases/camel.apache.org_integrationprofiles.yaml 
b/pkg/resources/config/crd/bases/camel.apache.org_integrationprofiles.yaml
index 14579406b..61fda2ec5 100644
--- a/pkg/resources/config/crd/bases/camel.apache.org_integrationprofiles.yaml
+++ b/pkg/resources/config/crd/bases/camel.apache.org_integrationprofiles.yaml
@@ -1427,11 +1427,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -1475,6 +1472,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -3727,11 +3728,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -3775,6 +3773,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
diff --git a/pkg/resources/config/crd/bases/camel.apache.org_integrations.yaml 
b/pkg/resources/config/crd/bases/camel.apache.org_integrations.yaml
index a6a8b7d20..2ec617d6c 100644
--- a/pkg/resources/config/crd/bases/camel.apache.org_integrations.yaml
+++ b/pkg/resources/config/crd/bases/camel.apache.org_integrations.yaml
@@ -8241,11 +8241,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -8289,6 +8286,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
@@ -10495,11 +10496,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -10543,6 +10541,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:
diff --git a/pkg/resources/config/crd/bases/camel.apache.org_pipes.yaml 
b/pkg/resources/config/crd/bases/camel.apache.org_pipes.yaml
index 7e581348f..c4d821277 100644
--- a/pkg/resources/config/crd/bases/camel.apache.org_pipes.yaml
+++ b/pkg/resources/config/crd/bases/camel.apache.org_pipes.yaml
@@ -8297,11 +8297,8 @@ spec:
                         description: The configuration of Keda trait
                         properties:
                           auto:
-                            description: |-
-                              Definition of triggers according to the KEDA 
format. Each trigger must contain `type` field corresponding
-                              to the name of a KEDA autoscaler and a key/value 
map named `metadata` containing specific trigger options
-                              and optionally a mapping of secrets, used by 
Keda operator to poll resources according to the autoscaler type.
-                              Automatically discover KEDA triggers from Camel 
component URIs.
+                            description: Automatically discover KEDA triggers 
from
+                              Camel component URIs.
                             type: boolean
                           autoMetadata:
                             additionalProperties:
@@ -8346,6 +8343,10 @@ spec:
                             format: int32
                             type: integer
                           triggers:
+                            description: |-
+                              Definition of triggers according to the KEDA 
format. Each trigger must contain `type` field corresponding
+                              to the name of a KEDA autoscaler and a key/value 
map named `metadata` containing specific trigger options
+                              and optionally a mapping of secrets, used by 
Keda operator to poll resources according to the autoscaler type.
                             items:
                               properties:
                                 metadata:
@@ -10483,11 +10484,8 @@ spec:
                     description: The configuration of Keda trait
                     properties:
                       auto:
-                        description: |-
-                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
-                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
-                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
-                          Automatically discover KEDA triggers from Camel 
component URIs.
+                        description: Automatically discover KEDA triggers from 
Camel
+                          component URIs.
                         type: boolean
                       autoMetadata:
                         additionalProperties:
@@ -10531,6 +10529,10 @@ spec:
                         format: int32
                         type: integer
                       triggers:
+                        description: |-
+                          Definition of triggers according to the KEDA format. 
Each trigger must contain `type` field corresponding
+                          to the name of a KEDA autoscaler and a key/value map 
named `metadata` containing specific trigger options
+                          and optionally a mapping of secrets, used by Keda 
operator to poll resources according to the autoscaler type.
                         items:
                           properties:
                             metadata:


Reply via email to