eshepelyuk commented on issue #6157: URL: https://github.com/apache/camel-k/issues/6157#issuecomment-3364643257
@squakez leaving it here for others. I was able to confirm your assumption / suggestion regarding ConfigMap/Secret creation. When properties are declared as separate keys on ConfigMap/Secret - plain-quarkus runtime picks up those properties. One difficulty though is configuring quarkus logs. I've been using property file like this ``` quarkus.log.category."ua.eshepelyuk".level = DEBUG quarkus.log.category."org.apache.hc.client5.http.wire".level = DEBUG ``` I've tried to add those properties a separate keys to ConfigMap but it produced following K8s error ``` data[quarkus.log.category."ua.eshepelyuk".level]: Invalid value: "quarkus.log.category.\"ua.eshepelyuk\".level": a valid config key must consist of alphanumeric characters, '-', '_' or '.' (e.g. 'key.name', or 'KEY_NAME', or 'key-name', regex used for validation is '[-._a-zA-Z0-9]+') ``` -- 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]
