squakez commented on issue #6157: URL: https://github.com/apache/camel-k/issues/6157#issuecomment-3364403144
Hello, I had a look again and I think I got now what the problem is. The `plain-quarkus` runtime is not (yet) able to scan a properties file coming from the configmap/secret. From core version 4.15.0/4.14.2 onward (and related quarkus version) this should be no longer happening. Ideally you should turn your secrets or configmap in a plain structure, in which case, the scan of properties work. Following the example in the issue, while this is fixed on the core, you can have a configmap/secret defined as: ``` kubectl create configmap my-configmap --from-literal prop1=1 --from-literal prop2=2 ... ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
