Skip to content

Commit 3f31f36

Browse files
chore: nightly automatic updates
1 parent 9d35897 commit 3f31f36

File tree

5 files changed

+231
-259
lines changed

5 files changed

+231
-259
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
- Performance regression due to configmap/secrets whole cluster watch [\#5143](https://github.com/apache/camel-k/issues/5143)
1010
- camel-jackson configure configure "autoDiscoverObjectMapper" property for non-spring boot application [\#5140](https://github.com/apache/camel-k/issues/5140)
11+
- Externally built Integrations are deployed without a command in Camel-K 2.2.0 [\#5112](https://github.com/apache/camel-k/issues/5112)
1112
- Coverage report wrong percentage [\#5108](https://github.com/apache/camel-k/issues/5108)
1213
- Add possibility to configure annotation for the builder pods [\#5106](https://github.com/apache/camel-k/issues/5106)
1314
- Include the operator node-selector in the helm chart [\#5103](https://github.com/apache/camel-k/issues/5103)
@@ -26,6 +27,7 @@
2627
- Data type Kamelet hardcoded [\#5014](https://github.com/apache/camel-k/issues/5014)
2728
- Quarkus buildMode should sort JVM before Native execution [\#5001](https://github.com/apache/camel-k/issues/5001)
2829
- Failing to build native integration [\#5000](https://github.com/apache/camel-k/issues/5000)
30+
- Use generated trait [\#4811](https://github.com/apache/camel-k/issues/4811)
2931
- Pointer to an external schema/CRD [\#4788](https://github.com/apache/camel-k/issues/4788)
3032
- Pipe using simple language expressions causing failure [\#4777](https://github.com/apache/camel-k/issues/4777)
3133
- 1st Integration after Camel K runtime version update failing [\#4776](https://github.com/apache/camel-k/issues/4776)
@@ -37,6 +39,8 @@
3739

3840
**Merged pull requests:**
3941

42+
- feat\(traits\): persist generated status [\#5153](https://github.com/apache/camel-k/pull/5153) ([squakez](https://github.com/squakez))
43+
- fix\(core\): Externally built Integrations run command configuration from jvm trait [\#5151](https://github.com/apache/camel-k/pull/5151) ([gansheer](https://github.com/gansheer))
4044
- fix\(ci\): Java required by automatic-updates [\#5150](https://github.com/apache/camel-k/pull/5150) ([gansheer](https://github.com/gansheer))
4145
- chore\(deps\): bump golang.org/x/oauth2 from 0.16.0 to 0.17.0 [\#5149](https://github.com/apache/camel-k/pull/5149) ([dependabot[bot]](https://github.com/apps/dependabot))
4246
- chore\(deps\): bump golang.org/x/term from 0.16.0 to 0.17.0 [\#5148](https://github.com/apache/camel-k/pull/5148) ([dependabot[bot]](https://github.com/apps/dependabot))

config/crd/bases/camel.apache.org_integrations.yaml

+7-24
Original file line numberDiff line numberDiff line change
@@ -8364,10 +8364,14 @@ spec:
83648364
format: int32
83658365
type: integer
83668366
components:
8367-
description: 'A comma separated list of the Camel components
8367+
description: "A comma separated list of the Camel components
83688368
that need to be customized in order for them to work when
8369-
the schedule is triggered externally by Kubernetes. Supported
8370-
components are currently: `cron`, `timer` and `quartz`.'
8369+
the schedule is triggered externally by Kubernetes. A specific
8370+
customizer is activated for each specified component. E.g.
8371+
for the `timer` component, the `cron-timer` customizer is
8372+
activated (it's present in the `org.apache.camel.k:camel-k-cron`
8373+
library). \n Supported components are currently: `cron`,
8374+
`timer` and `quartz`."
83718375
type: string
83728376
concurrencyPolicy:
83738377
description: 'Specifies how to treat concurrent executions
@@ -9076,19 +9080,6 @@ spec:
90769080
items:
90779081
type: string
90789082
type: array
9079-
configsAsProperties:
9080-
description: Include any property file (suffix `.properties`)
9081-
listed in configmaps/secrets provided in the `configs` parameter
9082-
as a runtime property file (default `true`).
9083-
type: boolean
9084-
configsAsPropertyFiles:
9085-
description: 'Deprecated: use camel.properties or include
9086-
your properties in an explicit property file backed by a
9087-
configmap or secret. Let the operator to treat configmaps
9088-
or secret as plain properties file with their key/value
9089-
list (ie .spec.data["camel.my-property"] = my-value) (default
9090-
`true`).'
9091-
type: boolean
90929083
configuration:
90939084
description: 'Legacy trait configuration parameters. Deprecated:
90949085
for backward compatibility.'
@@ -9115,14 +9106,6 @@ spec:
91159106
items:
91169107
type: string
91179108
type: array
9118-
scanKameletsImplicitLabelSecrets:
9119-
description: 'Deprecated: include your properties in an explicit
9120-
property file backed by a secret. Let the operator to scan
9121-
for secret labeled with `camel.apache.org/kamelet` and `camel.apache.org/kamelet.configuration`.
9122-
These secrets are mounted to the application and treated
9123-
as plain properties file with their key/value list (ie .spec.data["camel.my-property"]
9124-
= my-value) (default `true`).'
9125-
type: boolean
91269109
volumes:
91279110
description: 'A list of Persistent Volume Claims to be mounted.
91289111
Syntax: [pvcname:/container/path]'

0 commit comments

Comments
 (0)