Camel Quarkus unable to pick up camel.component.kafka.brokers #46138
-
In Quarkus 3.18.0, Camel 4.9.0, is not picking up configuration option for
but picks up other configs such as:
with this yaml config present: %prod:
camel:
component:
kafka:
brokers: ${KAFKA_BOOTSTRAP_SERVERS}
maxRequestSize: 10000000
security-protocol: SASL_SSL
sasl-mechanism: SCRAM-SHA-512
sasl-jaas-config: >
org.apache.kafka.common.security.scram.ScramLoginModule required
username=${SASL_USERNAME}
password=${SASL_PASSWORD};
ssl-key-password: ${KAFKA_CONFIGURATION_SSL_KEY_PASSWORD}
ssl-keystore-location: /mnt/kafka-cert/keystore.jks
ssl-keystore-password: ${KAFKA_CONFIGURATION_SSL_KEYSTORE_PASSWORD}
ssl-truststore-location: /mnt/kafka-cert/truststore.jks
ssl-truststore-password: ${KAFKA_CONFIGURATION_SSL_TRUSTSTORE_PASSWORD}
Property is defined earlier in yaml file
Everything works in %dev mode Any ideas why? I can't add the "?brokers=" to the component because we use Dev services and in PROD we deploy to different clusters in K8 using Helm, so this has to be as dynamic as possible. Thx |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
/cc @alesj (kafka), @cescoffier (kafka), @ozangunalp (kafka) |
Beta Was this translation helpful? Give feedback.
-
This is fixed by choosing another property value |
Beta Was this translation helpful? Give feedback.
This is fixed by choosing another property value