btyasumorik opened a new issue, #4276:
URL: https://github.com/apache/camel-k/issues/4276
The following error occurs when performing integration using redis-source
Kamelet.
```
Cannot reconcile Integration redis-to-kafka: error during trait
customization: component not found for uri
"spring-redis:{{redisHost}}:{{redisPort}}?channels=%7B%7Bchannels%7D%7D&command=%7B%7Bcommand%7D%7D&serializer=%23class%3A%7B%7Bserializer%7D%7D"
in camel catalog runtime version 1.17.0
```
My full configuration is:
- camel-k version: 1.12.0
- integration file
<redisToKafka.camel.yaml>
```
- route:
from:
uri: kamelet:redis-source
parameters:
redisHost: redis-server.redis
redisPort: 6379
channels: test
steps:
- to:
uri: kamelet:kafka-not-secured-sink
parameters:
bootstrapServers: kafka-broker.kafka:9092
topic: test
```
- Execution Result
```
$ kamel run redis.camel.yaml -n camel --dev
Integration "redis" created
Condition "IntegrationPlatformAvailable" is "True" for Integration redis:
camel/camel-k
Progress: integration "redis" in phase Initialization
Integration "redis" in phase "Initialization"
Cannot reconcile Integration redis: error during trait customization:
component not found for uri
"spring-redis:{{redisHost}}:{{redisPort}}?channels=%7B%7Bchannels%7D%7D&command=%7B%7Bcommand%7D%7D&serializer=%23class%3A%7B%7Bserializer%7D%7D"
in camel catalog runtime version 1.17.0
Progress: integration "redis" in phase Error
Error: integration "redis" deployment failed
```
--
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]