cfitzw opened a new issue, #6157: URL: https://github.com/apache/camel-k/issues/6157
### What happened? When mounting a file-based configmap, using the `plain-quarkus` runtime, the associated values from the ConfigMap are not made available as properties. This is only true when using the `plain-quarkus` runtime and works as expected with the default runtime as of v2.6. ### Steps to reproduce 1. Create a file-based ConfigMap 2. Pull in the ConfigMap into the integration 3. Attempt to reference a property: ```bash # file: app.properties my-variable=result ``` ```bash kubectl create configmap my-configmap --from-file=app.properties ``` ```yaml # camel-k: config=configmap:my-configmap - from: uri: "timer:tick?period=1000" steps: - setBody: simple: "{{my-variable}}" - to: "log:info" ``` ### Relevant log output ```shell ``` ### Camel K version v2.6 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org