weimeilin79 opened a new issue #1935:
URL: https://github.com/apache/camel-quarkus/issues/1935
I had a couple of components in Camel K that uses properties to set the
value for the components.
After the runtime switched to Quarkus, some of them stopped working.
AMQP
```
camel.component.amqp.configuration.connection-factory.remoteURI=amqp://messaging-yez4fz7xkj.workshop-operators.svc:5672?amqp.saslMechanisms=PLAIN
camel.component.amqp.username=user
camel.component.amqp.password=enmasse
```
but now, it only takes in quarkus setting
```
quarkus.qpid-jms.url=amqp://<CHANGE_ME>:5672
quarkus.qpid-jms.username=user
quarkus.qpid-jms.password=enmasse
```
Infinispan
```
kafka.properties: |2+
consumer.group=premium
camel.component.kafka.brokers=<CHANGE_ME>:9092
camel.component.infinispan.configuration.hosts=example-infinispan.user1.svc:11222
camel.component.infinispan.configuration.configurationUri=client.properties
client.properties: |2+
infinispan.client.hotrod.use_auth=true
infinispan.client.hotrod.auth_username=developer
infinispan.client.hotrod.auth_password=password
infinispan.client.hotrod.auth_realm=default
infinispan.client.hotrod.sasl_mechanism=SCRAM-SHA-512
infinispan.client.hotrod.marshaller=org.infinispan.commons.marshall.JavaSerializationMarshaller
infinispan.client.hotrod.java_serial_whitelist=java.util.ArrayList,java.util.LinkedHashMap,java.util.HashMap
infinispan.client.hotrod.async_executor_factory =
org.infinispan.client.hotrod.impl.async.DefaultAsyncExecutorFactory
infinispan.client.hotrod.default_executor_factory.pool_size = 1
infinispan.client.hotrod.hash_function_impl.2 =
org.infinispan.client.hotrod.impl.consistenthash.ConsistentHashV2
infinispan.client.hotrod.tcp_no_delay = true
infinispan.client.hotrod.tcp_keep_alive = false
infinispan.client.hotrod.request_balancing_strategy =
org.infinispan.client.hotrod.impl.transport.tcp.RoundRobinBalancingStrategy
infinispan.client.hotrod.key_size_estimate = 64
infinispan.client.hotrod.value_size_estimate = 512
infinispan.client.hotrod.force_return_values = false
```
But now it only takes in
```
quarkus.infinispan-client.server-list=example-infinispan.user1.svc:11222
quarkus.infinispan-client.use-auth=true
quarkus.infinispan-client.auth-username=developer
quarkus.infinispan-client.auth-password=password
quarkus.infinispan-client.auth-realm=default
quarkus.infinispan-client.sasl-mechanism=SCRAM-SHA-512
``
and was not able to take in the hotrod-client properties anymore with many
missing configs.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]